tavern/.gitlab-ci.yml

18 lines
194 B
YAML
Raw Permalink Normal View History

2020-03-07 14:31:45 +00:00
image: golang:1.13
stages:
- test
- build
test:
stage: test
script:
2020-03-24 17:55:56 +00:00
- go generate ./...
2020-03-07 14:40:29 +00:00
- go test ./...
2020-03-07 14:31:45 +00:00
build:
stage: build
script:
2020-03-24 17:59:06 +00:00
- go generate ./...
2020-03-07 14:31:45 +00:00
- go build