Skip to content

Support doctrine/orm v3 + doctrine/dbal v4 #154

Support doctrine/orm v3 + doctrine/dbal v4

Support doctrine/orm v3 + doctrine/dbal v4 #154

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php: [8.1, 8.2, 8.3]
composer_flags: [ '', '--prefer-lowest' ]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
extensions: pdo, sqlite
coverage: none
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer update --prefer-dist --no-progress --no-interaction ${{ matrix.composer_flags }}
- name: Run test suite
run: php vendor/bin/codecept run

Check failure on line 33 in .github/workflows/main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/main.yml

Invalid workflow file

You have an error in your yaml syntax on line 33
- if: '--prefer-lowest' == matrix.composer_flags
name: Run source code analysis
run: php vendor/bin/phpstan