Skip to content

Fix requirements

Fix requirements #4

Workflow file for this run

#.github/workflows/php.yml
name: Tests
on:
push: ~
pull_request: ~
jobs:
build:
runs-on: ${{ matrix.operating-system }}
name: PHP ${{ matrix.php }} and Symfony ${{ matrix.symfony }}
strategy:
matrix:
operating-system: [ ubuntu-latest, macos-latest ]
php: [ '8.3' ]
symfony: [ '6.4.*', '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 (Symfony ${{ matrix.symfony }})
env:
SYMFONY_REQUIRE: ${{ matrix.symfony }}
uses: ramsey/composer-install@v2
- name: Tests on ${{ matrix.operating-system }}
run: ./vendor/bin/phpunit