Skip to content

Bump the workflow-actions group with 2 updates #9

Bump the workflow-actions group with 2 updates

Bump the workflow-actions group with 2 updates #9

Workflow file for this run

name: Course checks
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
permissions:
contents: read
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Check out repository
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- name: Set up uv
uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9 # v9.0.0
with:
enable-cache: true
- name: Install Python
run: uv python install 3.12
- name: Install locked environment
run: uv sync --locked --all-extras
- name: Lint
run: uv run ruff check .
- name: Check formatting
run: uv run ruff format --check .
- name: Test
run: uv run pytest --cov --cov-report=term-missing
- name: Build course website
run: uv run mkdocs build --strict