Skip to content

Move from Poetry to uv #134

Move from Poetry to uv

Move from Poetry to uv #134

Workflow file for this run

name: main
on: [push]
jobs:
check-test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.9', '3.12']
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- run: pip install --upgrade pip uv
- run: uv sync
- run: uv run make check-test
check-dev:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip install --upgrade pip uv
- run: uv sync
- run: uv run make check-lint
- run: uv run make check-format
- run: uv build