From d5f8f8448027411e1089e36028970ec2716b3300 Mon Sep 17 00:00:00 2001 From: jaina heartles Date: Sun, 18 Dec 2022 06:21:52 -0800 Subject: [PATCH] Enable integration tests in CI --- .woodpecker.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.woodpecker.yml b/.woodpecker.yml index beae96a..019dcae 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -27,3 +27,11 @@ pipeline: - apk add sqlite sqlite-dev libpq libpq-dev - echo "Running unit tests..." - ./zig-linux-x86_64-0.10.0/zig build unit + + integration-tests: + image: alpine + commands: + - echo "Downloading dependencies..." + - apk add sqlite sqlite-dev libpq libpq-dev + - echo "Running integration tests..." + - ./zig-linux-x86_64-0.10.0/zig build integration-tests