Skip to content

Remove unused plugin from mkdocs.yml #2

Remove unused plugin from mkdocs.yml

Remove unused plugin from mkdocs.yml #2

Workflow file for this run

# Deploy documentation when push to main
name: Deploy docs
on:
push:
branches: [ "main" ]
jobs:
build:
name: Deploy docs
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Python 3.11
uses: actions/setup-python@v2
with:
python-version: "3.11"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r docs/requirements.txt
- name: Deploy docs
run: mkdocs gh-deploy --force