Fix the bundle path to support the new bundle structure #98
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-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- 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@v4 | |
- name: Fix CS | |
uses: docker://oskarstark/php-cs-fixer-ga | |
tests: | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- description: 'No Symfony specified' | |
php: '8.1' | |
- description: 'No Symfony specified' | |
php: '8.2' | |
- description: 'No Symfony specified' | |
php: '8.3' | |
- description: 'Lowest deps' | |
php: '8.1' | |
composer_option: '--prefer-lowest' | |
- description: 'Symfony 5.4' | |
php: '8.1' | |
symfony: 5.4.* | |
- description: 'Symfony 7' | |
php: '8.2' | |
symfony: ^7.0 | |
dev: true | |
- description: 'Dev deps' | |
php: '8.3' | |
dev: true | |
name: PHP ${{ matrix.php }} tests (${{ matrix.description }}) | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Cache | |
uses: actions/cache@v4 | |
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 }} | |
- run: | | |
sed -ri 's/"symfony\/(expression-language|framework-bundle|templating)": "(.+)"/"symfony\/\1": "'${{ matrix.symfony }}'"/' composer.json; | |
if: matrix.symfony | |
- run: composer config minimum-stability dev | |
if: matrix.dev | |
- run: composer update --no-interaction --no-progress --ansi ${{ matrix.composer_option }} | |
- run: vendor/bin/phpunit |