2
0
mirror of https://github.com/hibiken/asynq.git synced 2026-04-29 04:35:52 +08:00
Files
asynq/.travis.yml

14 lines
363 B
YAML
Raw Normal View History

2019-11-30 07:36:43 -08:00
language: go
go_import_path: github.com/hibiken/asynq
git:
depth: 1
2020-09-02 06:27:11 -07:00
go: [1.13.x, 1.14.x, 1.15.x]
script:
- go test -race -v -coverprofile=coverage.txt -covermode=atomic ./...
2020-09-13 06:03:11 -07:00
- go test -run=^$ -bench=. -loglevel=debug ./...
2019-11-30 07:36:43 -08:00
services:
- redis-server
after_success:
2020-09-13 06:03:11 -07:00
- travis_wait 60 bash ./.travis/benchstat.sh
- bash <(curl -s https://codecov.io/bash)