From 416527c20925e0519b5519a3eaab8d05c7bfbe72 Mon Sep 17 00:00:00 2001 From: tobjend Date: Wed, 1 Jul 2026 13:15:53 +0200 Subject: [PATCH] add Woodpecker CI: run tests on push/pull/manual --- .woodpecker.yml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..0bb4aba --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,9 @@ +when: + - event: [push, pull_request, manual] + +steps: + test: + image: python:3.11-slim + commands: + - pip install --no-cache-dir . pytest + - python -m pytest tests/ -v