arikawa/.gitlab-ci.yml

26 lines
306 B
YAML
Raw Normal View History

2020-01-16 04:43:42 +00:00
image: golang:alpine
variables:
GO111MODULE: "on"
2020-01-20 11:09:31 +00:00
CGO_ENABLED: 0
2020-01-16 04:43:42 +00:00
before_script:
- apk add git
stages:
- test
unit_test:
stage: test
script:
2020-01-20 11:09:31 +00:00
- go test -v ./...
2020-01-16 04:43:42 +00:00
integration_test:
stage: test
only:
variables:
2020-01-16 04:49:21 +00:00
- $BOT_TOKEN
2020-01-16 04:43:42 +00:00
script:
2020-01-20 11:09:31 +00:00
- go test -tags integration -v ./...
2020-01-16 04:43:42 +00:00