Skip to content

add lint check before publish #10

add lint check before publish

add lint check before publish #10

Workflow file for this run

name: Deploy Documentation
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository 🛎️
uses: actions/checkout@v4
- name: Install Python 3.12 🐍
uses: actions/setup-python@v5
with:
python-version: "3.12"
- name: Install requirements 📦
run: |
pip install -r requirements.txt
pip install -r requirements-dev.txt
git fetch # necessary for mkdocs gh-deploy
- name: Deploy Docs 📔
run: mkdocs gh-deploy --force --no-history