This repository was archived by the owner on Mar 2, 2026. It is now read-only.
chore(deps): lock file maintenance #448
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: | |
| types: | |
| - opened | |
| - synchronize | |
| - reopened | |
| - ready_for_review | |
| merge_group: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| mypy: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/[email protected] | |
| - name: Install uv | |
| uses: astral-sh/[email protected] | |
| with: | |
| enable-cache: true | |
| - name: Setup Python | |
| uses: actions/[email protected] | |
| with: | |
| python-version-file: .python-version | |
| - name: Install dependencies | |
| run: uv sync --all-extras --dev | |
| - name: mypy | |
| run: uv run mypy . | |
| ruff: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Checkout code | |
| uses: actions/[email protected] | |
| - name: Install uv | |
| uses: astral-sh/[email protected] | |
| with: | |
| enable-cache: true | |
| - name: Setup Python | |
| uses: actions/[email protected] | |
| with: | |
| python-version-file: .python-version | |
| - name: Install dependencies | |
| run: uv sync --all-extras --dev | |
| - name: ruff | |
| run: uv run ruff check --output-format=github . |