From bac9713ed194f0272b8bc7d53a94de94157fec2b Mon Sep 17 00:00:00 2001 From: Don Date: Mon, 21 Sep 2020 07:55:24 -0700 Subject: [PATCH] Remove pull --- .drone.yml | 5 ----- 1 file changed, 5 deletions(-) diff --git a/.drone.yml b/.drone.yml index 00efe6c..59f116b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,7 +9,6 @@ platform: steps: - name: environment - pull: always image: golang:1.15 commands: - go version @@ -19,7 +18,6 @@ steps: path: /go - name: staticcheck - pull: never image: golang:1.15 commands: - go run honnef.co/go/tools/cmd/staticcheck ./... @@ -28,7 +26,6 @@ steps: path: /go - name: lint - pull: never image: golang:1.15 commands: - go run golang.org/x/lint/golint -set_exit_status ./... @@ -37,7 +34,6 @@ steps: path: /go - name: vet - pull: never image: golang:1.15 commands: - go vet ./... @@ -46,7 +42,6 @@ steps: path: /go - name: test - pull: never image: golang:1.15 commands: - go test -cover -v ./...