mirror of
https://github.com/diamondburned/arikawa.git
synced 2024-11-04 22:14:30 +00:00
26 lines
299 B
YAML
26 lines
299 B
YAML
|
image: golang:alpine
|
||
|
|
||
|
variables:
|
||
|
GO111MODULE: "on"
|
||
|
CGO_ENABLED: 0
|
||
|
|
||
|
before_script:
|
||
|
- apk add git
|
||
|
|
||
|
stages:
|
||
|
- test
|
||
|
|
||
|
unit_test:
|
||
|
stage: test
|
||
|
script:
|
||
|
- go test ./...
|
||
|
|
||
|
integration_test:
|
||
|
stage: test
|
||
|
only:
|
||
|
variables:
|
||
|
- BOT_TOKEN
|
||
|
script:
|
||
|
- go test -tags integration ./...
|
||
|
|