Skip to content

Refactor action and tests; python only now #29

Refactor action and tests; python only now

Refactor action and tests; python only now #29

Workflow file for this run

name: "Lint"
on:
pull_request:
push:
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install uv
uses: astral-sh/setup-uv@v8
- name: Ruff
run: |
uv run ruff format --check .
uv run ruff check .
- name: ty
run: uv run ty check
- name: Test
run: uv run pytest tests/ -v --tb=short