Merge pull request #15 from PUGX/update-phpunit #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Continuous Integration | |
on: | |
pull_request: ~ | |
push: ~ | |
jobs: | |
check: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
- name: Validate composer.json | |
run: composer validate --strict --no-check-lock | |
cs-fixer: | |
runs-on: ubuntu-22.04 | |
name: PHP-CS-Fixer | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Fix CS | |
uses: docker://oskarstark/php-cs-fixer-ga | |
tests: | |
runs-on: ubuntu-24.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- description: 'No Symfony specified' | |
php: '8.1' | |
- description: 'No Symfony specified' | |
php: '8.2' | |
- description: 'Lowest deps' | |
php: '8.1' | |
composer_option: '--prefer-lowest' | |
env: | |
SYMFONY_DEPRECATIONS_HELPER: max[self]=0 | |
- description: 'Symfony 5.4' | |
php: '8.1' | |
symfony: 5.4.* | |
- description: 'Symfony 6.4' | |
php: '8.2' | |
symfony: 6.4.* | |
- description: 'Latest' | |
php: '8.3' | |
symfony: 7.0.* | |
name: PHP ${{ matrix.php }} tests (${{ matrix.description }}) | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Cache | |
uses: actions/cache@v3 | |
with: | |
path: ~/.composer/cache/files | |
key: composer-${{ matrix.php }}-${{ matrix.symfony }}-${{ matrix.composer_option }} | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
- name: install dev deps | |
if: contains(matrix.symfony, '-dev') | |
run: | | |
composer config minimum-stability dev | |
composer config prefer-stable true | |
- name: require specific Symfony version | |
if: matrix.symfony | |
run: | | |
sed -ri 's/"symfony\/(.+)": "(.+)"/"symfony\/\1": "'${{ matrix.symfony }}'"/' composer.json; | |
- name: update vendors | |
run: composer update --no-interaction --no-progress --ansi ${{ matrix.composer_option }} | |
- name: run tests | |
run: bin/phpunit | |