mirror of
https://github.com/joohoi/acme-dns.git
synced 2025-01-13 00:05:33 +07:00
20 lines
374 B
YAML
20 lines
374 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.2.x
|
|
- 1.3.x
|
|
- 1.4 # has no cover tool for latest releases
|
|
- 1.5.x
|
|
- 1.6.x
|
|
- 1.7.x
|
|
- 1.8.x
|
|
# - tip # sadly fails most of the times
|
|
|
|
script:
|
|
- go vet
|
|
- test -z "$(go fmt ./...)" # fail if not formatted properly
|
|
- go test -race -coverprofile=coverage.txt -covermode=atomic
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|