ScoDoc/.gitea/workflows/black.yml
Lyanis Souidi 5ca99471af
All checks were successful
Lint / lint (push) Successful in 1m6s
Ajout workflow black
2024-06-05 10:24:41 +02:00

12 lines
232 B
YAML

name: Lint
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable
with:
options: "--check --diff --extend-exclude migrations"