[pre-commit.ci] pre-commit autoupdate #648
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |