mirror of
https://github.com/SamTherapy/dnscrypt.git
synced 2024-12-22 17:00:43 +00:00
15 lines
214 B
YAML
15 lines
214 B
YAML
language: go
|
|
sudo: false
|
|
|
|
env:
|
|
- GO111MODULE=on
|
|
|
|
go:
|
|
- 1.11.x
|
|
- 1.x
|
|
|
|
script:
|
|
- go test -race -v -bench=. -coverprofile=coverage.txt -covermode=atomic ./...
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|