Skip to content

PR review (#25)

PR review (#25) #95

Workflow file for this run

name: lint
on:
pull_request:
push:
branches: [main]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: python
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Install uv
uses: astral-sh/setup-uv@v7
with:
enable-cache: true
- name: Install the project
run: uv sync --all-groups
- name: Run pre-commit
run: uv run pre-commit run --all-files
- name: Type check
run: uv run ty check src/