From dc29a6551a2524419ba4b1b8acbd024e273d7363 Mon Sep 17 00:00:00 2001 From: "Travis F. Collins" Date: Wed, 15 May 2024 10:05:29 -0600 Subject: [PATCH] Remove duplicate CI job Signed-off-by: Travis F. Collins --- .github/workflows/doc.yml | 22 ---------------------- 1 file changed, 22 deletions(-) diff --git a/.github/workflows/doc.yml b/.github/workflows/doc.yml index 48d9610..c53119a 100644 --- a/.github/workflows/doc.yml +++ b/.github/workflows/doc.yml @@ -58,28 +58,6 @@ jobs: make linkcheck cd .. - Doc: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: Set up Python 3.8 - uses: actions/setup-python@v2 - with: - python-version: 3.8 - - - name: Install dependencies - run: | - bash ./.github/scripts/install_libiio.sh - bash ./.github/scripts/install_part_libs.sh - bash ./.github/scripts/install_pydeps.sh - pip install -r requirements_doc.txt - - - name: Build doc - run: | - cd doc && make html - cd .. - DeployMainDoc: runs-on: ubuntu-latest needs: [CheckDocs, Doc]