Removed the try/catch that used to handle the AnnotationException(s) #41
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: CI | |
on: | |
pull_request: | |
jobs: | |
build: | |
name: Test | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
php: [ '8.1', '8.2', '8.3' ] | |
strategy: [ 'highest' ] | |
sf_version: [''] | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Set up PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
coverage: none | |
tools: flex | |
- name: Download dependencies | |
uses: ramsey/composer-install@v1 | |
env: | |
SYMFONY_REQUIRE: ${{ matrix.sf_version }} | |
with: | |
dependency-versions: ${{ matrix.strategy }} | |
composer-options: --no-interaction --prefer-dist --optimize-autoloader | |
- name: Install PHPUnit | |
run: ./vendor/bin/simple-phpunit install | |
- name: Run tests | |
run: ./vendor/bin/simple-phpunit |