Skip to content

flake8/linter cleanup #1005

flake8/linter cleanup

flake8/linter cleanup #1005

Workflow file for this run

name: Deploy MkDocs Site
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: pip install mkdocs mkdocs-material mkdocstrings mkdocstrings-python
- name: Build the MkDocs site
run: mkdocs build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site