Bastian a8f37866d4
Some checks failed
Linting / linting (push) Failing after 45s
Initial commit
2025-04-05 01:14:04 +02:00

25 lines
420 B
YAML

---
name: Linting
on:
- push
jobs:
linting:
name: linting
runs-on: ubuntu-latest
steps:
- name: checkout
uses: actions/checkout@v4
- name: check
uses: astral-sh/ruff-action@v3
with:
src: "./src"
args: "check"
- name: format check
uses: astral-sh/ruff-action@v3
with:
src: "./src"
args: "format --check"