diff options
| -rw-r--r-- | .drone.yml | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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) |
