From a9a66d0abe518351d7a747d4d571741302c8efb7 Mon Sep 17 00:00:00 2001 From: Pino Date: Thu, 11 Jun 2026 19:47:52 +0200 Subject: [PATCH] =?UTF-8?q?CI-002:=20Woodpecker=20CI=20f=C3=BCr=20pytest/r?= =?UTF-8?q?uff/mypy=20hinzuf=C3=BCgen?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Pipeline auf push/PR - Abhängigkeiten installieren, Tests, Lint, Typecheck --- .woodpecker.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..70cb8ac --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,25 @@ +when: + event: + - push + - pull_request + +steps: + - name: Install dependencies + image: python:3.11-slim + commands: + - pip install -e .[dev] + + - name: Run pytest + image: python:3.11-slim + commands: + - pytest -q + + - name: Run ruff + image: python:3.11-slim + commands: + - ruff check . + + - name: Run mypy + image: python:3.11-slim + commands: + - mypy app tests \ No newline at end of file