Add linting workflow for Python code using Ruff

This commit is contained in:
2026-03-18 18:49:19 +02:00
parent d2556185b8
commit d197e14425
+18
View File
@@ -0,0 +1,18 @@
name: Lint Python code
on:
push:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install Ruff
run: pip install ruff
- name: Run linter
run: ruff check .