aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.drone.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.drone.yml b/.drone.yml
index 0e5ed0f..f73de6f 100644
--- a/.drone.yml
+++ b/.drone.yml
@@ -4,8 +4,8 @@ steps:
- name: test
image: "golang:alpine"
commands:
- - go get -u $(FLAGS) github.com/mattn/go-sqlite3
- - go install $(FLAGS) github.com/mattn/go-sqlite3
+ - go get -u github.com/mattn/go-sqlite3
+ - go install github.com/mattn/go-sqlite3
- for file in $$(find . -name 'vendor' -prune -o -type f -name '*.go'); do golint $$file; done
- go test -race -short -coverprofile=coverage.txt -covermode=atomic ./...
- bash <(curl -s https://codecov.io/bash)