delete empty file #18
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
#.github/workflows/php.yml | |
name: Compatibility test php & symfony | |
on: | |
push: ~ | |
pull_request: ~ | |
jobs: | |
build: | |
runs-on: ${{ matrix.operating-system }} | |
name: PHP ${{ matrix.php }} and Symfony ${{ matrix.symfony }} | |
strategy: | |
matrix: | |
operating-system: [ 'ubuntu-22.04' ] | |
php: [ '8.1', '8.2', '8.3' ] | |
symfony: [ '6.4.*', '7.0.*'] | |
exclude: | |
- php: '8.1' | |
symfony: '7.0.*' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup PHP ${{ matrix.php }} | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
tools: flex | |
- name: Download dependencies | |
env: | |
SYMFONY_REQUIRE: ${{ matrix.symfony }} | |
uses: ramsey/composer-install@v2 | |
- name: Run test suite on PHP ${{ matrix.php }} and Symfony ${{ matrix.symfony }} | |
run: ./vendor/bin/phpunit |