mirror of
https://github.com/DNSCrypt/dnscrypt-proxy.git
synced 2024-12-11 22:35:40 +01:00
17 lines
235 B
YAML
17 lines
235 B
YAML
language: go
|
|
sudo: false
|
|
|
|
go:
|
|
- 1.11.x
|
|
- 1.12.x
|
|
- tip
|
|
|
|
env:
|
|
- GO111MODULE=on
|
|
|
|
script:
|
|
- go test -race -v -bench=. -coverprofile=coverage.txt -covermode=atomic ./...
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|