Skip to content

Make tqdm optional cause it interferes with thread monkey patching in… #39

Make tqdm optional cause it interferes with thread monkey patching in…

Make tqdm optional cause it interferes with thread monkey patching in… #39

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