chore(deps): bump actions/checkout from 6 to 7 in the dependencies group #15
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 Pipeline | |
| on: | |
| pull_request: | |
| branches: [main] | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - ready_for_review | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| name: Test & Quality Checks | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v7 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| enable-cache: true | |
| - name: Install dependencies | |
| run: | | |
| uv sync | |
| - name: Run linting (ruff) | |
| run: | | |
| uv run ruff check | |
| - name: Run formatting check (ruff) | |
| run: | | |
| uv run ruff format --check | |
| - name: Run type checks | |
| run: | | |
| uv run ty check | |
| - name: Run tests with coverage | |
| run: | | |
| uv run pytest --cov --cov-report=term-missing --cov-fail-under=80 |