Coverage reporting and upload to codecov. #27
Workflow file for this run
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 | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout source | |
uses: actions/checkout@v3 | |
- name: Cache tox | |
uses: actions/cache@v3 | |
with: | |
path: .tox | |
key: tox-${{hashFiles('pyproject.toml')}} | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
cache: "pip" | |
cache-dependency-path: "pyproject.toml" | |
- name: Install tox | |
run: python -m pip install tox | |
- name: Build HTML documentation with tox | |
run: tox -e docs | |
- name: Pubish documentation on GitHub pages | |
if: success() && github.event_name != 'pull_request' | |
uses: JamesIves/github-pages-deploy-action@v4 | |
with: | |
folder: docs/_build/html | |
branch: gh-pages | |
git-config-name: "github-actions[bot]" | |
git-config-email: "github-actions[bot]@users.noreply.github.com" |