12 lines
249 B
YAML
12 lines
249 B
YAML
lint:
|
|
image: registry.gitlab.com/etke.cc/base
|
|
script:
|
|
- golangci-lint run ./...
|
|
|
|
unit:
|
|
image: registry.gitlab.com/etke.cc/base
|
|
script:
|
|
- go test -coverprofile=cover.out ./...
|
|
- go tool cover -func=cover.out
|
|
- rm -f cover.out
|