blob: c873ca3611bd636e19f98141ab02c8975c2f35ea (
plain) (
tree)
|
|
image: golang:1.11
stages:
- build
- test
before_script:
- go get golang.org/x/text/unicode/rangetable
build:
stage: build
script:
- go build ./...
test:
stage: test
script:
- test -z "$(gofmt -l . | tee /dev/stderr)"
- go test ./...
|