Skip to content

Fix styles

Fix styles #39

Workflow file for this run

name: Deploy gh-pages
on:
push:
branches:
- 'master'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r dev-requirements.txt
- name: Build and deploy
run: |
make update_docs
mkdocs gh-deploy -b gh-pages --force
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}