Run unit tests and integration tests in CI

This commit is contained in:
Matthias Loibl 2019-07-23 13:42:38 -07:00
parent 807ab8dc76
commit ce22ada9e2
No known key found for this signature in database
GPG key ID: 78A796CA74CA38BA
2 changed files with 2 additions and 0 deletions

View file

@ -38,6 +38,7 @@
name: 'build', name: 'build',
commands: [ commands: [
'make build', 'make build',
'make test',
'make test-integration', 'make test-integration',
], ],
}, },

View file

@ -26,6 +26,7 @@ steps:
image: golang:1.12 image: golang:1.12
commands: commands:
- make build - make build
- make test
- make test-integration - make test-integration
environment: environment:
CGO_ENABLED: 0 CGO_ENABLED: 0