👷 Run Ruff linter on back-end pull requests
All checks were successful
ci/woodpecker/manual/lint Pipeline was successful

This commit is contained in:
2024-02-11 17:06:04 +01:00
parent a8277fd018
commit 7ac719db24
2 changed files with 9 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
steps:
- name: ruff
image: python:3.12-alpine
commands:
- pip install ruff
- ruff . --format github
when:
- event: pull_request
path: 'backend/**'