Skip to content

Switch to UV

Switch to UV #19

Workflow file for this run

name: Continuous Integration
on: [ push, pull_request ]
jobs:
build:
name: Build & Test
runs-on: ubuntu-latest
steps:
- name: Checkout repository code
uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v6
- name: Set up Python
run: uv python install
- name: Install the project
run: uv sync --all-groups
- name: Run Ruff
run: uv run ruff check --output-format=github .
- name: MyPy type checking
run: |
uv run mypy --strict
- name: Test with pytest
run: |
uv run pytest