5
0
mirror of https://github.com/cwinfo/matterbridge.git synced 2025-01-24 14:14:37 +00:00

17 lines
200 B
YAML
Raw Normal View History

image: golang:1.11
stages:
- build
- test
build:
stage: build
script:
- go build ./...
test:
stage: test
script:
- test -z "$(gofmt -l . | tee /dev/stderr)"
- go test ./...