From ab8068e26d541c33fe803fb98b334307251d1b3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0trauch?= Date: Fri, 17 Sep 2021 01:39:48 +0200 Subject: [PATCH] Testing pipeline --- .woodpecker.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.woodpecker.yml b/.woodpecker.yml index 5641afd..b1bdc4a 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,10 +1,7 @@ # .woodpecker.yml pipeline: - build: - image: debian + test: + image: golang commands: - - echo "This is the build step" - a-test-step: - image: debian - commands: - - echo "Testing.." + - go mod tidy + - make test