Update master to Symfony 6.3 #9
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/phpunit.yaml | |
name: phpunit | |
on: [push, pull_request] | |
jobs: | |
tests: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: ['8.1'] | |
name: PHP ${{ matrix.php }} tests | |
steps: | |
- run: echo "This job for ${{ github.ref }} was automatically triggered by a ${{ github.event_name }} event on ${{ runner.os }}." | |
# Basically git clone | |
- uses: actions/checkout@v2 | |
# Use PHP of specific version | |
- uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: none # disable xdebug, pcov | |
# If we use two steps like this, we can better see if composer or the test failed | |
- run: composer install --dev --no-interaction --prefer-source | |
- run: vendor/phpunit/phpunit/phpunit | |
- run: echo "This job's status is ${{ job.status }}." |