database-anonymizer/.woodpecker/build.yml
Simon Vieille 0c2015ad7a
All checks were successful
ci/woodpecker/push/test Pipeline was successful
ci/woodpecker/push/build Pipeline was successful
add ci depends
2024-03-20 12:34:14 +01:00

24 lines
371 B
YAML

when:
- event: [pull_request, tag]
- event: push
branch:
- ${CI_REPO_DEFAULT_BRANCH}
- release/*
- renovate/*
depends_on:
- test
variables:
- &golang_image 'docker.io/golang:1.22.0'
steps:
"Add vendor":
image: *golang_image
commands:
- go mod vendor
"Run build":
image: *golang_image
commands:
- go build