Disable static check and lint for now

This commit is contained in:
Thomas Müller
2019-12-05 09:47:42 +01:00
parent c0f93d4833
commit b30fcde437

View File

@@ -46,34 +46,34 @@ def testing(ctx):
},
],
},
{
'name': 'staticcheck',
'image': 'webhippie/golang:1.13',
'pull': 'always',
'commands': [
'make staticcheck',
],
'volumes': [
{
'name': 'gopath',
'path': '/srv/app',
},
],
},
{
'name': 'lint',
'image': 'webhippie/golang:1.13',
'pull': 'always',
'commands': [
'make lint',
],
'volumes': [
{
'name': 'gopath',
'path': '/srv/app',
},
],
},
# {
# 'name': 'staticcheck',
# 'image': 'webhippie/golang:1.13',
# 'pull': 'always',
# 'commands': [
# 'make staticcheck',
# ],
# 'volumes': [
# {
# 'name': 'gopath',
# 'path': '/srv/app',
# },
# ],
# },
# {
# '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',