From ca0b8da7338877a71292514e289eff501da644f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=91cze=20Bence?= Date: Thu, 25 Jun 2020 00:44:24 +0200 Subject: [PATCH] MAPG-94 fix possible syntax error in yml --- bitbucket-pipelines.yml | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml index 9587e39..4bb8be5 100644 --- a/bitbucket-pipelines.yml +++ b/bitbucket-pipelines.yml @@ -3,13 +3,13 @@ image: php:7.4.7-cli-buster pipelines: default: - step: - name: Unit Testing - caches: - - composer - artifacts: - - vendor/** - script: - - apt-get update && apt-get install -y unzip - - curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer - - composer install - - vendor/bin/phpunit --testdox tests + name: Unit Testing + caches: + - composer + artifacts: + - vendor/** + script: + - apt-get update && apt-get install -y unzip + - curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer + - composer install + - vendor/bin/phpunit --testdox tests