Merged in bugfix/MAPG-94-introduce-automatic-unit-testing (pull request #147)

MAPG-94 fix possible syntax error in yml
This commit is contained in:
Bence Pőcze 2020-06-24 22:45:01 +00:00
commit 255168ffb6

View File

@ -3,13 +3,13 @@ image: php:7.4.7-cli-buster
pipelines: pipelines:
default: default:
- step: - step:
name: Unit Testing name: Unit Testing
caches: caches:
- composer - composer
artifacts: artifacts:
- vendor/** - vendor/**
script: script:
- apt-get update && apt-get install -y unzip - apt-get update && apt-get install -y unzip
- curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer - curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
- composer install - composer install
- vendor/bin/phpunit --testdox tests - vendor/bin/phpunit --testdox tests