Skip to content

fix dep and CI

fix dep and CI #3

Workflow file for this run

name: Check code formatting
on:
push:
branches: [main]
pull_request:
jobs:
check-formatting:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install uv
uses: astral-sh/setup-uv@v5
with:
enable-cache: true
- name: Install the project
run: uv sync --all-groups
- name: Run Ruff format check
run: uv run ruff format --check .
- name: Run Ruff linting and auto-fix
run: uv run ruff check --fix .