build(deps): bump the uv group across 1 directory with 4 updates #303
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: Code Quality Checks | |
| on: | |
| push: | |
| branches-ignore: | |
| - "main" | |
| jobs: | |
| lint: | |
| name: Check code linting | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python and UV | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: latest | |
| enable-cache: true | |
| activate-environment: true | |
| python-version: "3.13" | |
| - name: Install Dependencies | |
| run: uv sync --all-extras | |
| - name: Check style with ruff | |
| run: uv run ruff check tests src | |
| test: | |
| name: Execute code testing | |
| needs: | |
| - lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Set up Python and UV | |
| uses: astral-sh/setup-uv@v7 | |
| with: | |
| version: latest | |
| enable-cache: true | |
| activate-environment: true | |
| python-version: "3.13" | |
| - name: Install Dependencies | |
| run: uv sync --all-extras | |
| - name: Unit & Coverage test | |
| run: uv run pytest && uv run codecov |