Run lint and vendor-check on the same travis stage (#802)

This commit is contained in:
Adrià Cidre 2018-04-05 14:37:39 +02:00 committed by GitHub
parent aa0f2ede6d
commit bd14456e4b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -11,10 +11,10 @@ install:
- make dep-install - make dep-install
jobs: jobs:
include: include:
- stage: Lint - stage: Lint & Vendor Check
script: make lint script:
- stage: Vendor Check - make lint
script: make vendor-check - make vendor-check
- stage: Test unit and integration - stage: Test unit and integration
script: make test-unit-coverage script: make test-unit-coverage
- stage: Test e2e on private network - stage: Test e2e on private network