chore: update coverage config and move it to pyproject.toml #476
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: Deploy Docs to github pages | |
on: | |
push: | |
branches: [ master ] | |
jobs: | |
deploy: | |
runs-on: ubuntu-20.04 | |
steps: | |
# check out repository | |
- uses: actions/checkout@v4 | |
- name: Setup Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.8' | |
- name: install deps | |
run: | | |
python3 -m pip install --upgrade pip wheel setuptools | |
python3 -m pip install -r ./docsrc/doc_dependencies.txt | |
- name: Build Docs | |
run: | | |
make -C docsrc html | |
touch ./docsrc/_build/html/.nojekyll | |
- name: Deploy Docs to gh-pages | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docsrc/_build/html |