1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
image: golang:1.13 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 ./...