Skip to content

fix: update version pinning, ruff and pyright default checks, test ru… #6

fix: update version pinning, ruff and pyright default checks, test ru…

fix: update version pinning, ruff and pyright default checks, test ru… #6

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: astral-sh/setup-uv@v7
with:
version: "0.5.11"
enable-cache: true
version-file: .python-version
- run: uv sync --locked --all-groups
- name: Ruff formatting
run: uv run ruff format --check .
- name: Ruff linting
run: uv run ruff check .
- name: Pyright
run: uv run pyright
- name: Tests
run: uv run pytest -q