mirror of
https://github.com/crazy-max/diun.git
synced 2024-12-22 19:38:28 +00:00
21 lines
245 B
YAML
21 lines
245 B
YAML
language: go
|
|
|
|
go:
|
|
- 1.13
|
|
- 1.14
|
|
- 1.15
|
|
|
|
os:
|
|
- linux
|
|
- windows
|
|
|
|
before_install:
|
|
- go get -t -v ./...
|
|
|
|
script:
|
|
- go test -race -coverprofile=coverage.txt -covermode=atomic
|
|
|
|
after_success:
|
|
- bash <(curl -s https://codecov.io/bash)
|
|
|