From f845cf656713851a6dfcad98dd798a67b0489ff6 Mon Sep 17 00:00:00 2001 From: Chuck Burgess Date: Mon, 8 Jan 2018 14:35:36 -0600 Subject: [PATCH] put lint stages together --- .travis.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.travis.yml b/.travis.yml index 3c2cbd7..fad6834 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,13 +12,13 @@ script: jobs: include: - - stage: lint - script: vendor/bin/phpstan analyse src --level max --configuration phpstan.neon; - - - stage: lint - script: temp/ecs/bin/ecs check src tests; - before_script: composer create-project symplify/easy-coding-standard temp/ecs; + php: 7.1 + before_script: + - composer create-project symplify/easy-coding-standard temp/ecs + script: + - temp/ecs/bin/ecs check src tests + - vendor/bin/phpstan analyse src --level max --configuration phpstan.neon - stage: Coverage php: 7.1