chore: bump actions/checkout from 6.0.1 to 6.0.2 (#409) #690
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: Build | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| jobs: | |
| build-package: | |
| name: Build Package | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6.0.2 | |
| - name: Setup uv | |
| uses: astral-sh/setup-uv@v7.2.0 | |
| - name: Install Dependencies | |
| run: uv sync --locked | |
| - name: Check Formatting | |
| uses: dprint/check@v2.3 | |
| - name: Check Lint | |
| run: uv run ruff check | |
| - name: Test Package | |
| run: uv run pytest -v --cov | |
| - name: Build Package | |
| run: uv build |