Skip to content

ci: bump actions/setup-python from 5 to 6 in the actions-deps group #183

ci: bump actions/setup-python from 5 to 6 in the actions-deps group

ci: bump actions/setup-python from 5 to 6 in the actions-deps group #183

Workflow file for this run

name: CI
on:
push:
branches: ["**"]
jobs:
build:
name: Build docs
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: 3.9
- name: Install dependencies
run: |
pip install -r requirements.txt
- name: Install pre-commit
run: |
pip install pre-commit
- name: Run pre-commit checks
run: |
pre-commit run --all-files
- name: Build mkdocs
run: |
mkdocs build