Skip to content

Commit

Permalink
Merge pull request #17 from norling/fix/update-docs-action
Browse files Browse the repository at this point in the history
Update docs action to build with mkdocs
  • Loading branch information
jbygdell committed Nov 1, 2022
2 parents 5c4245b + e0b3754 commit 31d6f86
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,19 @@ jobs:
max-parallel: 4
matrix:
os: [ubuntu-latest]
python-version: [3.7]
python-version: [3.9]

runs-on: ${{ matrix.os }}

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox tox-gh-actions
- name: Run docs tests
run: tox -e docs
pip install -r docs/requirements.txt
- name: Test building docs
run: mkdocs build

0 comments on commit 31d6f86

Please sign in to comment.