2
0
mirror of https://github.com/hibiken/asynq.git synced 2025-02-23 04:10:17 +08:00
asynq/.travis.yml

14 lines
348 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 ./...
- go test -run=XXX -bench=. -loglevel=debug ./...
2019-11-30 07:36:43 -08:00
services:
- redis-server
after_success:
- bash ./.travis/benchcmp.sh
- bash <(curl -s https://codecov.io/bash)