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