diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml deleted file mode 100644 index 4a0299117..000000000 --- a/.github/workflows/docs.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: "Documentation build check" -on: - pull_request: - branches: - - "*" - -jobs: - docs: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v3 - with: - submodules: 'recursive' - - uses: actions/setup-python@v3 - with: - python-version: "3.10" - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install nox virtualenv - - name: Build docs - run: nox -s docs - - uses: actions/upload-artifact@v3 - with: - name: DocumentationHTML - path: docs/_build/html/ diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index bd686f993..f4963bda3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,6 +11,25 @@ on: - "*" jobs: + documentation_build_test: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + with: + submodules: 'recursive' + - uses: actions/setup-python@v3 + with: + python-version: "3.10" + - name: Install dependencies + run: | + python -m pip install --upgrade pip + pip install nox virtualenv + - name: Build docs + run: nox -s docs + - uses: actions/upload-artifact@v3 + with: + name: DocumentationHTML + path: docs/_build/html/ linting: runs-on: ubuntu-latest steps: