mirror of
https://github.com/hibiken/asynq.git
synced 2024-11-10 11:31:58 +08:00
c33dd447ac
Changes: - Added Unique option for clients - Require go v.13 or above (to use new errors wrapping functions) - Fixed adding queue key to all-queues set (asynq:queues) when scheduling.
13 lines
288 B
YAML
13 lines
288 B
YAML
language: go
|
|
go_import_path: github.com/hibiken/asynq
|
|
git:
|
|
depth: 1
|
|
go: [1.13.x, 1.14.x]
|
|
script:
|
|
- go test -race -v -coverprofile=coverage.txt -covermode=atomic ./...
|
|
services:
|
|
- redis-server
|
|
after_success:
|
|
- bash ./.travis/benchcmp.sh
|
|
- bash <(curl -s https://codecov.io/bash)
|