Skip to content

DE-55463 Update Sonar Qube integration #89

DE-55463 Update Sonar Qube integration

DE-55463 Update Sonar Qube integration #89

Workflow file for this run

name: CI
on: [pull_request, workflow_dispatch]
jobs:
phpstan:
strategy:
matrix:
php-version:
- 8.1
- 8.2
uses: BrandEmbassy/github-actions/.github/workflows/php-phpstan.yml@master
with:
PHP_VERSION: ${{ matrix.php-version }}
ecs:
strategy:
fail-fast: false
matrix:
php-version:
- 8.1
- 8.2
uses: BrandEmbassy/github-actions/.github/workflows/php-ecs.yml@master
with:
PHP_VERSION: ${{ matrix.php-version }}
rector:
uses: BrandEmbassy/github-actions/.github/workflows/php-rector.yml@master
with:
PHP_VERSION: '8.1'
RECTOR_CACHE_PATH: './var/rector'
phpunit:
strategy:
matrix:
composer-arg:
- "install"
- "update --prefer-lowest"
php-version:
- 8.1
- 8.2
exclude:
- composer-arg: install
php-version: 8.1
uses: BrandEmbassy/github-actions/.github/workflows/php-phpunit.yml@master
with:
COMPOSER_ARG: ${{ matrix.composer-arg }}
PHP_VERSION: ${{ matrix.php-version }}
phpunit-with-sonar-qube:
uses: BrandEmbassy/github-actions/.github/workflows/php-phpunit-with-sonar-qube.yml@master
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}