Remove pull

This commit is contained in:
Don 2020-09-21 07:55:24 -07:00
parent 6783f6618e
commit bac9713ed1
1 changed files with 0 additions and 5 deletions

View File

@ -9,7 +9,6 @@ platform:
steps: steps:
- name: environment - name: environment
pull: always
image: golang:1.15 image: golang:1.15
commands: commands:
- go version - go version
@ -19,7 +18,6 @@ steps:
path: /go path: /go
- name: staticcheck - name: staticcheck
pull: never
image: golang:1.15 image: golang:1.15
commands: commands:
- go run honnef.co/go/tools/cmd/staticcheck ./... - go run honnef.co/go/tools/cmd/staticcheck ./...
@ -28,7 +26,6 @@ steps:
path: /go path: /go
- name: lint - name: lint
pull: never
image: golang:1.15 image: golang:1.15
commands: commands:
- go run golang.org/x/lint/golint -set_exit_status ./... - go run golang.org/x/lint/golint -set_exit_status ./...
@ -37,7 +34,6 @@ steps:
path: /go path: /go
- name: vet - name: vet
pull: never
image: golang:1.15 image: golang:1.15
commands: commands:
- go vet ./... - go vet ./...
@ -46,7 +42,6 @@ steps:
path: /go path: /go
- name: test - name: test
pull: never
image: golang:1.15 image: golang:1.15
commands: commands:
- go test -cover -v ./... - go test -cover -v ./...