Skip to content

ci: reference setup-uv action by hash #431

ci: reference setup-uv action by hash

ci: reference setup-uv action by hash #431

Workflow file for this run

name: Lint
on: [push]
jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
python-version:
- 3.12.7
job:
- mypy .
- ruff format --check .
- ruff check .
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install uv
uses: astral-sh/setup-uv@c771a70e6277c0a99b617c7a806ffedaca235ff9
- name: Install dependencies
run: uv sync --all-extras --dev
- run: uv run ${{ matrix.job }}