Skip to content

CI: make interactive validation robust (berta.py + RICH_FORCE_TERMINAL) #41

CI: make interactive validation robust (berta.py + RICH_FORCE_TERMINAL)

CI: make interactive validation robust (berta.py + RICH_FORCE_TERMINAL) #41

Workflow file for this run

name: Deploy Website
on:
push:
branches: [main]
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.11"
- name: Install dependencies
run: pip install mkdocs-material mkdocs-minify-plugin
- name: Build site
run: mkdocs build --strict
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v4
if: github.ref == 'refs/heads/main'
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./site