1 Commits
1.1.2 ... main

Author SHA1 Message Date
etienne-hd
afab2654d0 ci(github): add ruff lint workflow 2026-04-29 23:12:32 +02:00

23
.github/workflows/lint.yml vendored Normal file
View File

@@ -0,0 +1,23 @@
name: Lint
on:
push:
pull_request:
jobs:
ruff:
name: Ruff
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run Ruff lint
uses: astral-sh/ruff-action@v3
with:
args: check
- name: Run Ruff format check
uses: astral-sh/ruff-action@v3
with:
args: format --check