From f150011b827bae48ecf07c2969423071f4b26909 Mon Sep 17 00:00:00 2001 From: Doug Wright Date: Sun, 4 Aug 2019 20:05:22 +0100 Subject: [PATCH] Install CS check before trying to use it... --- azure-pipelines.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 4c26e1a..6f96c52 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -25,11 +25,11 @@ steps: php -version displayName: 'Use PHP version $(phpVersion)' -- script: vendor/bin/php-cs-fixer fix --verbose --dry-run --diff --diff-format=udiff --allow-risky=yes - displayName: 'Check code style' - - script: composer install --no-interaction --prefer-dist displayName: 'Composer install' +- script: vendor/bin/php-cs-fixer fix --verbose --dry-run --diff --diff-format=udiff --allow-risky=yes + displayName: 'Check code style' + - script: vendor/bin/phpunit displayName: 'PHPUnit'