Skip to content

rework to use uv

rework to use uv #13

Workflow file for this run

name: Python CI
on:
- push
- pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install dependencies
run: |
pip install uv
make setup
- name: Run the linter
run: |
make lint
- name: Run the tests
run: |
make test