diff options
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.drone.yml b/.drone.yml index 9d4a977..20a4419 100644 --- a/.drone.yml +++ b/.drone.yml @@ -16,7 +16,8 @@ steps: commands: - go test -bench . -- name: vet +- name: coverage image: golang:latest commands: - - go vet . + - go test -coverprofile=cover.out + - go tool cover -func=cover.out |