0
0
mirror of https://github.com/thegeeklab/wp-ansible.git synced 2024-09-19 15:02:47 +02: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": [
"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": {