mirror of
https://github.com/gogs/gogs.git
synced 2026-01-19 13:52:21 +01:00
14 lines
411 B
YAML
14 lines
411 B
YAML
dependencies:
|
|
override:
|
|
# './...' is a relative pattern which means all subdirectories
|
|
- go get -t -d -v ./...
|
|
- go build -v
|
|
- go get -u github.com/golang/lint/golint
|
|
|
|
test:
|
|
override:
|
|
# './...' is a relative pattern which means all subdirectories
|
|
- golint ./...
|
|
- go test -v -race -coverprofile=coverage.txt -covermode=atomic
|
|
post:
|
|
- bash <(curl -s https://codecov.io/bash) |