1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2024-09-12 05:06:28 +00:00
arikawa/.gitlab-ci.yml

26 lines
318 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 -race -v ./...
integration_test:
stage: test
only:
variables:
- $BOT_TOKEN
script:
- go test -tags integration -race -v ./...