Skip to content

[PHP]: Update friendsofphp/php-cs-fixer requirement in /vendor-bin/phpcs #1695

[PHP]: Update friendsofphp/php-cs-fixer requirement in /vendor-bin/phpcs

[PHP]: Update friendsofphp/php-cs-fixer requirement in /vendor-bin/phpcs #1695

Workflow file for this run

name: PHPunit
on: [ push ]
# Cancels all previous workflow runs for the same branch that have not yet completed.
concurrency:
# The concurrency group contains the workflow name and the branch name.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
phpunit:
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ ubuntu-latest ]
# When you change a version here, change it also in the SonarCloud if condition
php: [ '8.2', '8.3' ]
symfony: [ '~5.4', '~6.4', '~7.0' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@2.30.4
with:
php-version: ${{ matrix.php }}
coverage: pcov
extensions: ast
- name: Get Composer Cache Directory
id: composer-cache
run: |
echo "::set-output name=dir::$(composer config cache-files-dir)"
- name: Cache Composer's dependencies
uses: actions/cache@v4
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: php-composer-dependencies-cache
- name: Fix Symfony version
run: |
composer req symfony/flex --no-update
composer config extra.symfony.require "${{ matrix.symfony }}"
composer config --no-plugins allow-plugins.symfony/flex true
- name: Install Composer deps
uses: ramsey/composer-install@v3
with:
composer-options: --no-scripts
- name: Update Composer deps (with Flex)
# The second update is to make Flex able to do its job
run: |
composer update --no-interaction --no-scripts
- name: Install Composer bin PHPUnit
uses: ramsey/composer-install@v3
with:
working-directory: './vendor-bin/phpunit'
- name: Run PHPunit
run: |
./vendor-bin/phpunit/vendor/bin/phpunit --coverage-clover var/coverage/clover.xml
- name: Change paths in clover.xml
run: |
sed -i 's+/home/runner/work/component-then-when/component-then-when+/github/workspace+g' ./var/coverage/clover.xml
- name: Sonarcloud
if: |
github.ref == 'refs/heads/dev' && matrix.php == '8.3' && matrix.symfony == '~7.0'
uses: sonarsource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}