Bastian 4ca1f2ab53
All checks were successful
Linting / linting (push) Successful in 16s
Initial commit
2025-04-05 01:28:56 +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"