diff --git a/.woodpecker.yml b/.woodpecker.yml index f2d0c67..b834999 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -1,4 +1,8 @@ pipeline: + test: + image: golang:1.17 + commands: + - go test ./... build: image: docker environment: @@ -9,9 +13,13 @@ - docker build -t registry.yetaga.in/library:latest . - docker push registry.yetaga.in/library:latest secrets: [docker_username, docker_password] + when: + branch: "master" services: docker: image: docker:18.09-dind command: ["--storage-driver=vfs"] privileged: true + when: + branch: master