ants/.travis.yml

18 lines
305 B
YAML
Raw Normal View History

2018-06-29 05:25:18 +03:00
language: go
go:
- "1.9.x"
- "1.10.x"
2018-10-03 14:12:05 +03:00
- "1.11.x"
2019-04-08 17:16:59 +03:00
- "1.12.x"
2018-06-29 05:25:18 +03:00
2018-07-15 15:50:10 +03:00
before_install:
- go get -t -v ./...
2018-06-29 05:25:18 +03:00
script:
2019-01-27 07:53:54 +03:00
#- go test -cpu=16 -bench=. -benchmem=true -run=none ./...
2019-01-27 08:30:38 +03:00
- go test -race -coverprofile=coverage.txt -covermode=atomic -v
2018-07-15 15:50:10 +03:00
after_success:
2018-10-03 14:11:04 +03:00
- bash <(curl -s https://codecov.io/bash)