Skip to content

ci: make linter step non-blocking; align Ruff with Black #12

ci: make linter step non-blocking; align Ruff with Black

ci: make linter step non-blocking; align Ruff with Black #12

Workflow file for this run

name: Deploy Docs
on:
push:
branches: [ main ]
workflow_dispatch:
permissions:
contents: write
pages: write
id-token: write
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v2
- name: Install docs dependencies
run: uv sync --extra docs
- name: Build docs
run: uv run mkdocs build --strict
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: site
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4