asciinema-editor/.gitlab-ci.yml

27 lines
332 B
YAML
Raw Permalink Normal View History

2020-10-23 17:58:10 +00:00
image: golang:latest
stages:
- validate
- build
fmt:
stage: validate
script:
- gofmt -l -s -e .
- exit $(gofmt -l -s -e . | wc -l)
vet:
stage: validate
script:
- go vet -composites=false ./...
test:
stage: validate
script:
- go test -race -v ./...
build:
stage: build
script:
- go build