From bd03b87e6c655640974a0e421da9f64a96786765 Mon Sep 17 00:00:00 2001 From: Robert Kaussow Date: Tue, 26 Jan 2021 12:25:58 +0100 Subject: [PATCH] cleanup --- .drone.star | 31 +------------------------------ 1 file changed, 1 insertion(+), 30 deletions(-) diff --git a/.drone.star b/.drone.star index 5027a79..11cbe01 100644 --- a/.drone.star +++ b/.drone.star @@ -36,12 +36,6 @@ def testing(ctx): "commands": [ "go run honnef.co/go/tools/cmd/staticcheck ./...", ], - "volumes": [ - { - "name": "gopath", - "path": "/go", - }, - ], }, { "name": "lint", @@ -49,12 +43,7 @@ def testing(ctx): "commands": [ "go run golang.org/x/lint/golint -set_exit_status ./...", ], - "volumes": [ - { - "name": "gopath", - "path": "/go", - }, - ], + }, { "name": "vet", @@ -62,12 +51,6 @@ def testing(ctx): "commands": [ "go vet ./...", ], - "volumes": [ - { - "name": "gopath", - "path": "/go", - }, - ], }, { "name": "test", @@ -75,18 +58,6 @@ def testing(ctx): "commands": [ "go test -cover ./...", ], - "volumes": [ - { - "name": "gopath", - "path": "/go", - }, - ], - }, - ], - "volumes": [ - { - "name": "gopath", - "temp": {}, }, ], "trigger": {