diff --git a/.woodpecker.yml b/.woodpecker.yml deleted file mode 100644 index 1259718..0000000 --- a/.woodpecker.yml +++ /dev/null @@ -1,6 +0,0 @@ -pipeline: - first-job: - image: busybox - commands: - - echo "first run" - diff --git a/backend/.woodpecker/.lint.yaml b/backend/.woodpecker/.lint.yaml new file mode 100644 index 0000000..0b0f32f --- /dev/null +++ b/backend/.woodpecker/.lint.yaml @@ -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/**'