Skip to content

build: use uv as package manager and ruff as linter and formatter #5

build: use uv as package manager and ruff as linter and formatter

build: use uv as package manager and ruff as linter and formatter #5

name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
linters:
name: Linters
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
id: setup-python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- run: pip3 install uv
- run: uv venv
- run: uv sync
- run: uv run ruff check