Skip to content

[pre-commit.ci] pre-commit autoupdate #647

[pre-commit.ci] pre-commit autoupdate

[pre-commit.ci] pre-commit autoupdate #647

Workflow file for this run

name: Documentation Build Test
on:
- push
- pull_request
- workflow_dispatch
jobs:
build_docs:
runs-on: ubuntu-latest
strategy:
matrix:
pyver: [6, 7, 8, 9]
name: Run Doc Tests -- Python 3.${{ matrix.pyver }}
steps:
- uses: actions/checkout@v2
- name: Install build dependencies
run: sudo apt-get install -y pandoc
- uses: actions/setup-python@v2
with:
python-version: 3.${{ matrix.pyver }}
- name: Install tox
run: pip install tox
- name: Run Tox
run: tox -e py3${{ matrix.pyver }}-docs