Skip to content

Update cli.py

Update cli.py #13

Workflow file for this run

name: Deploy Documentation
on:
push:
branches: [ main ]
# Required for pushing to gh-pages
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
...

Check failure on line 17 in .github/workflows/deploy-docs.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy-docs.yml

Invalid workflow file

You have an error in your yaml syntax on line 17
uses: actions/checkout@v3
with:
fetch-depth: 0 # required for mkdocs gh-deploy
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.10"
- name: Install MkDocs + Material Theme
run: pip install mkdocs mkdocs-material
- name: Deploy documentation
run: mkdocs gh-deploy --force