Skip to content

chore(deps): bump actions/checkout from 5 to 6 (#14) #33

chore(deps): bump actions/checkout from 5 to 6 (#14)

chore(deps): bump actions/checkout from 5 to 6 (#14) #33

Workflow file for this run

name: Python Linting and Type Checking
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.12'
- name: Install uv
uses: astral-sh/setup-uv@v7
- name: Install the project
run: uv sync --locked --all-extras --dev
- name: Run Ruff check
run: uv run ruff check . --output-format=github
- name: Run Ty check
run: uv run ty check .