diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..4bd9021 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,10 @@ +--- +kind: pipeline +name: default + +steps: +- name: build library + image: golang + commands: + - go test + - go build diff --git a/scheduler.go b/scheduler.go index 2e58b1a..88f68e4 100644 --- a/scheduler.go +++ b/scheduler.go @@ -1,7 +1,6 @@ package gtq import ( - "fmt" "sort" "time" )