Skip to content

fixed coverage reports #3

fixed coverage reports

fixed coverage reports #3

Workflow file for this run

# build docs from docstrings and markdown-file in folder docs
# publish them as github pages
#
#note for myself
#
# Do not forget to set git branch `gh-pages` as source for github pages.
# This branch auto-updated by `mkdocs gh-deploy`
#
name: docs
on:
push:
branches:
- main
- master
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
with:
python-version: '3.11'
- run: |
pip install -r requirements.dev.txt
pip install ghp-import
python -m pip install -e .
- run: ./scripts/build-docs.sh
- run: |
ghp-import --no-jekyll --push --force site