Fix array access in Doctrine Driver for new Doctrine ORM 3.1+ #768
Workflow file for this run
This file contains hidden or 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: | |
push: | |
branches: | |
- master | |
jobs: | |
phpunit: | |
name: "PHPUnit" | |
runs-on: "ubuntu-20.04" | |
strategy: | |
fail-fast: false | |
matrix: | |
php-version: | |
- "7.4" | |
- "8.0" | |
- "8.1" | |
- "8.2" | |
- "8.3" | |
dependencies: | |
- "lowest" | |
- "highest" | |
include: | |
- php-version: '8.4' | |
dependencies: 'highest' | |
composer-stability: 'dev' | |
env: | |
JMS_TESTS_SHOW_DEPRECATIONS: 1 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php-version }} | |
- name: Composer config | |
if: ${{ matrix.composer-stability }} | |
run: composer config minimum-stability ${{ matrix.composer-stability }} | |
- name: Install dependencies with Composer | |
uses: ramsey/composer-install@v2 | |
with: | |
dependency-versions: "${{ matrix.dependencies }}" | |
composer-options: "${{ matrix.composer-options }}" | |
- name: Run tests | |
run: | | |
export $ENV | |
echo $ENV | |
vendor/bin/phpunit |