diff options
Diffstat (limited to '.woodpecker/test.yml')
| -rw-r--r-- | .woodpecker/test.yml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/.woodpecker/test.yml b/.woodpecker/test.yml new file mode 100644 index 0000000..f50057a --- /dev/null +++ b/.woodpecker/test.yml @@ -0,0 +1,14 @@ +when: + - event: push + +matrix: + DB: + - sqlite + - postgres + +steps: + - name: test + image: python:bookworm + commands: + - pip install tox + - ci/run_tests.sh $DB |
