Skip to content

Switch poetry to uv #103

Switch poetry to uv

Switch poetry to uv #103

Workflow file for this run

name: Test
on: pull_request
concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Install dependencies
run: uv sync --group test
- name: Run tests and generate coverage report
run: make coverage