Merge pull request #107 from randileeharper/migrate-pip-to-uv #61
This file contains hidden or 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-and-test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v8.2.0 | |
| - name: Set up Python | |
| run: uv python install 3.12 | |
| - name: Sync dependencies | |
| run: uv sync --extra dev | |
| - name: Ruff | |
| run: uv run ruff check vesper tests | |
| - name: Mypy | |
| run: uv run mypy vesper | |
| - name: Pytest | |
| run: uv run pytest -q |