Skip to content

feat: loosen checks on tests/* #10

feat: loosen checks on tests/*

feat: loosen checks on tests/* #10

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