Add support for doctrine/orm 3 #119
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: Test | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
# Run on all PRs | |
env: | |
CI: "true" | |
jobs: | |
phpunit: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
dependencies: | |
- 'high' | |
- 'low' | |
php: | |
- '8.1' | |
- '8.2' | |
- '8.3' | |
- '8.4-dev' | |
orm: | |
- '^2.9' | |
- '^3.0' | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
coverage: pcov | |
ini-values: zend.assertions=1, assert.exception=1, error_reporting=-1 | |
php-version: ${{ matrix.php }} | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v4 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-php-${{ matrix.dependencies }}-${{ matrix.php }}-${{ hashFiles('**/composer.json') }} | |
restore-keys: | | |
${{ runner.os }}-php-${{ matrix.dependencies }}-${{ matrix.php }}-${{ hashFiles('**/composer.json') }} | |
${{ runner.os }}-php-${{ matrix.dependencies }}-${{ matrix.php }}- | |
${{ runner.os }}-php-${{ matrix.dependencies }}- | |
${{ runner.os }}-php- | |
- name: Install dependencies | |
run: composer update | |
--no-ansi | |
--no-interaction | |
--no-progress | |
--no-suggest | |
--prefer-dist | |
${{ matrix.dependencies == 'low' && '--prefer-lowest' || '' }} | |
- name: Get specific ORM version | |
run: composer update | |
doctrine/orm:'${{ matrix.orm }}' | |
--with-all-dependencies | |
${{ matrix.dependencies == 'low' && '--prefer-lowest' || '' }} | |
- name: PHPUnit | |
run: vendor/bin/phpunit | |
--coverage-clover coverage.xml | |
--coverage-text | |
--log-junit junit.xml | |
${{ matrix.dependencies == 'low' && '--config phpunit10.xml.dist' || '' }} | |
- name: Submit code coverage | |
if: ${{ always() }} | |
uses: codecov/codecov-action@v4 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
- name: Upload test results to Codecov | |
if: ${{ !cancelled() }} | |
uses: codecov/test-results-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} |