Update hatchling requirement from >=1.27.0 to >=1.30.1 #97
Workflow file for this run
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: | |
| jobs: | |
| validate: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v6 | |
| - name: Set up Python | |
| uses: actions/setup-python@v6 | |
| with: | |
| python-version: "3.12" | |
| - name: Set up uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Sync development dependencies | |
| run: uv sync --extra dev | |
| - name: Run tests | |
| run: uv run pytest | |
| - name: Run Ruff | |
| run: uv run ruff check . | |
| - name: Run mypy | |
| run: uv run mypy src | |
| - name: Build distribution artifacts | |
| run: uv build | |
| - name: Upload build artifacts | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: dist | |
| path: dist/* |