Fix 'make lint' not running megacheck inside travis (#821)

After running gometalinter in debug mode, it was found megacheck was being killed by travis due to reaching its memory limits. For more information, see this comment.

Run "Lint & Vendor Check" using a fully virtualized environment instead of a container-based one.
This commit is contained in:
Alex Kohler 2018-04-19 05:58:35 -04:00 committed by Adam Babik
parent f0f55d408f
commit 6c9ec5b337

View file

@ -12,6 +12,7 @@ install:
jobs:
include:
- stage: Lint & Vendor Check
sudo: required
script:
- make lint
- make vendor-check