Merge pull request #64 from owncloud/streamlineCI

[tests-only] don't run vet & lint twice
This commit is contained in:
Benedikt Kulmann
2020-08-27 08:52:00 +02:00
committed by GitHub
+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',