Migrate to uv (package & project management) and ruff (formatting + l… #86
Workflow file for this run
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, pull_request] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: astral-sh/setup-uv@v5 | |
with: | |
version: "latest" | |
- run: uv sync | |
- run: uv run ruff format --diff | |
- run: uv run ruff check | |
- run: uv run mypy src tests | |
- run: uv run pytest |