don't run vet & lint twice

This commit is contained in:
Artur Neumann
2020-08-27 12:22:52 +05:45
parent 09adbb3085
commit 5f6f944980
+1 -29
View File
@@ -58,21 +58,7 @@ def testing(ctx):
],
},
{
'name': 'vet',
'image': 'webhippie/golang:1.13',
'pull': 'always',
'commands': [
'make vet',
],
'volumes': [
{
'name': 'gopath',
'path': '/srv/app',
},
],
},
{
'name': 'staticcheck',
'name': 'golangci-lint',
'image': 'golangci/golangci-lint:latest',
'pull': 'always',
'commands': [
@@ -85,20 +71,6 @@ def testing(ctx):
},
],
},
{
'name': 'lint',
'image': 'webhippie/golang:1.13',
'pull': 'always',
'commands': [
'make lint',
],
'volumes': [
{
'name': 'gopath',
'path': '/srv/app',
},
],
},
{
'name': 'build',
'image': 'webhippie/golang:1.13',