Skip to content

ci: bump actions/checkout to v6 and setup-uv to v8 for Node 24 #67

ci: bump actions/checkout to v6 and setup-uv to v8 for Node 24

ci: bump actions/checkout to v6 and setup-uv to v8 for Node 24 #67

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v8
- name: Set up Python ${{ matrix.python-version }}
run: uv python install ${{ matrix.python-version }}
- name: Install dependencies
run: uv sync --extra dev
- name: Lint with ruff
run: uv run ruff check src/ tests/
- name: Type check with pyright
run: uv run pyright src/
- name: Run tests
run: uv run pytest tests/ -v