chore: migrate from Poetry to uv (#220) #449
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.12", "3.13"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
version: latest | |
- name: Check uv.lock | |
run: uv run --frozen pre-commit run uv-lock-check --all-files | |
- name: Lint (ruff) | |
run: uv run --frozen ruff check . --config pyproject.toml --output-format=github --no-fix | |
- name: Formatting (ruff) | |
run: uv run --frozen pre-commit run ruff-format --all-files --show-diff-on-failure | |
- name: Typing (pyright) | |
run: uv run --frozen pre-commit run pyright --all-files | |
test: | |
name: Test | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.12", "3.13"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
version: latest | |
- name: Test | |
run: uv run --frozen pytest tests |