chore(deps): update astral-sh/setup-uv action to v3.2.4 #24
Workflow file for this run
This file contains 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 . |