WIP Add CI #1

Open
Adrien wants to merge 39 commits from init-ci into develop
Showing only changes of commit 7ac719db24 - Show all commits

View File

@@ -1,6 +0,0 @@
pipeline:
first-job:
image: busybox
commands:
- echo "first run"

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/**'