mirror of
https://github.com/Jguer/yay.git
synced 2024-11-08 01:57:20 +01:00
15 lines
208 B
YAML
15 lines
208 B
YAML
|
language: go
|
||
|
|
||
|
go:
|
||
|
- 1.8.x
|
||
|
- tip
|
||
|
|
||
|
before_install:
|
||
|
- go get -t -v ./...
|
||
|
|
||
|
script:
|
||
|
- go test -race -coverprofile=coverage.txt -covermode=atomic
|
||
|
|
||
|
after_success:
|
||
|
- bash <(curl -s https://codecov.io/bash)
|