Skip to content

Update setup.py (#62) #40

Update setup.py (#62)

Update setup.py (#62) #40

Workflow file for this run

name: Publish Docs
on:
# Trigger the workflow on push or pull request,
# but only for the main branch
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.7"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r docs/requirements.txt
- name: Publish Docs
run: |
mkdocs gh-deploy -t material --force