04567c76 ^
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
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 ./...