Skip to content

refactor: Reorganize project to use uv and uv_build (#236) #370

refactor: Reorganize project to use uv and uv_build (#236)

refactor: Reorganize project to use uv and uv_build (#236) #370

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
Test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
steps:
- uses: actions/checkout@v6
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python-version }}
- run: |
python -m pip install --upgrade pip
pip install --group test -e .
pytest