1
0
Fork 0
woodpecker-pipeline-transform/.woodpecker.yml

25 lines
488 B
YAML
Raw Permalink Normal View History

2022-07-26 23:16:28 +02:00
pipeline:
2022-07-29 01:15:46 +02:00
lint:
image: golangci/golangci-lint:latest-alpine
pull: true
commands:
- golangci-lint run ./...
when:
event:
- push
- pull_request
branch:
- main
2022-07-26 23:16:28 +02:00
test:
image: golang:1.18
pull: true
commands:
- "go test -ldflags='-w -s' -tags 'netgo osusergo' -cover -coverprofile=coverage.out -covermode=atomic -json ./... > report.json"
when:
event:
- push
- pull_request
branch:
- main