From 12c1a920301e3cf8b9a4741214d4b3b43f493ccd Mon Sep 17 00:00:00 2001 From: Piotr Pauksztelo Date: Wed, 18 Dec 2024 08:34:30 +0100 Subject: [PATCH] Remove building documentations workflow --- .github/workflows/ci.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f40ee50d5..bddb0e0a8 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,34 +12,6 @@ jobs: test: uses: ./.github/workflows/testing.yml - build-docs: - runs-on: ubuntu-22.04 - - strategy: - matrix: - python-version: ["3.10"] - - steps: - - uses: actions/checkout@v4 - - - name: Set up Python - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - cache: "pip" - - - name: Install dependencies - run: | - sudo apt-get update && sudo apt-get -y install pandoc - pip install --upgrade pip wheel - pip install .[doc] - - - name: build docs - run: | - cd doc - sphinx-apidoc -fT -o source/module_reference ../logprep - make clean html - code-quality: runs-on: ubuntu-22.04