diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..cfb8383 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: go +go_import_path: github.com/hibiken/asynq +git: + depth: 1 +env: + - GO111MODULE=on # go modules are the default +go: [1.12.x, 1.13.x] +services: + - redis-server diff --git a/asynq.go b/asynq.go index 6b81d90..68b0e7f 100644 --- a/asynq.go +++ b/asynq.go @@ -4,7 +4,6 @@ import "github.com/google/uuid" /* TODOs: -- [P0] CI - [P0] README + Other docs - [P1] Add Support for multiple queues and priority - [P1] User defined max-retry count