Skip to content

MIgrate to uv (#99) #201

MIgrate to uv (#99)

MIgrate to uv (#99) #201

Workflow file for this run

name: Lint
on:
pull_request:
push:
branches:
- main
jobs:
Lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup uv
uses: astral-sh/setup-uv@v4
with:
version: "latest"
enable-cache: true
- name: Install dependencies
run: uv sync
# - name: pyright
# run: uv run pyright .
- name: ruff-format
run: uv run ruff format --check .
- name: ruff
run: uv run ruff check --output-format github .