diff --git a/bitbucket-pipelines.yml b/bitbucket-pipelines.yml deleted file mode 100644 index 37fd83a..0000000 --- a/bitbucket-pipelines.yml +++ /dev/null @@ -1,35 +0,0 @@ -pipelines: - step_definitions: - - composer: &composer - name: Composer - image: composer:2.2.16 - script: - - composer install - caches: - - composer - artifacts: - - vendor/** - - phpunit: &phpunit - name: PHPUnit - image: php:8.1 - script: - - pecl install pcov xdebug-3.1.5 - - docker-php-ext-enable pcov xdebug - - vendor/bin/phpunit - artifacts: - - build/coverage/** - - phpcsfixer-check: &phpcsfixer-check - name: PHP-CS-Fixer check - image: - name: 047136756731.dkr.ecr.eu-central-1.amazonaws.com/kam-cs:5.1.0 - aws: - access-key: $AWS_ACCESS_KEY - secret-key: $AWS_SECRET_KEY - script: - - php /tools/kam-cs fix --verbose --no-ansi --no-interaction --dry-run --diff - - default: - - step: *composer - - parallel: - - step: *phpcsfixer-check - - step: *phpunit