mirror of
https://github.com/cwinfo/matterbridge.git
synced 2024-11-10 12:10:26 +00:00
17 lines
200 B
YAML
17 lines
200 B
YAML
|
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 ./...
|