Skip to content

Commit

Permalink
Move documentation workflow to main tests workflow to see all on one …
Browse files Browse the repository at this point in the history
…screen
  • Loading branch information
insspb committed Jun 7, 2022
1 parent 09c19a3 commit b1f8ca6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 26 deletions.
26 changes: 0 additions & 26 deletions .github/workflows/docs.yml

This file was deleted.

19 changes: 19 additions & 0 deletions .github/workflows/tests.yml
Expand Up @@ -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:
Expand Down

0 comments on commit b1f8ca6

Please sign in to comment.