0
0
mirror of https://github.com/thegeeklab/wp-ansible.git synced 2024-11-22 10:00:38 +00:00
This commit is contained in:
Robert Kaussow 2021-01-26 12:25:58 +01:00
parent 8e8ac35579
commit bd03b87e6c
No known key found for this signature in database
GPG Key ID: 65362AE74AF98B61

View File

@ -36,12 +36,6 @@ def testing(ctx):
"commands": [ "commands": [
"go run honnef.co/go/tools/cmd/staticcheck ./...", "go run honnef.co/go/tools/cmd/staticcheck ./...",
], ],
"volumes": [
{
"name": "gopath",
"path": "/go",
},
],
}, },
{ {
"name": "lint", "name": "lint",
@ -49,12 +43,7 @@ def testing(ctx):
"commands": [ "commands": [
"go run golang.org/x/lint/golint -set_exit_status ./...", "go run golang.org/x/lint/golint -set_exit_status ./...",
], ],
"volumes": [
{
"name": "gopath",
"path": "/go",
},
],
}, },
{ {
"name": "vet", "name": "vet",
@ -62,12 +51,6 @@ def testing(ctx):
"commands": [ "commands": [
"go vet ./...", "go vet ./...",
], ],
"volumes": [
{
"name": "gopath",
"path": "/go",
},
],
}, },
{ {
"name": "test", "name": "test",
@ -75,18 +58,6 @@ def testing(ctx):
"commands": [ "commands": [
"go test -cover ./...", "go test -cover ./...",
], ],
"volumes": [
{
"name": "gopath",
"path": "/go",
},
],
},
],
"volumes": [
{
"name": "gopath",
"temp": {},
}, },
], ],
"trigger": { "trigger": {