test: test multiple versions of Doctrine ORM #42
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: | |
branches: [ "main" ] | |
permissions: | |
contents: read | |
jobs: | |
test: | |
runs-on: ${{ matrix.operating-system }} | |
strategy: | |
matrix: | |
operating-system: [ubuntu-latest] | |
php: | |
- '8.2' | |
- '8.3' | |
doctrine: | |
- '^2.19' | |
- '^3.2' | |
dep: | |
- highest | |
- lowest | |
name: Doctrine ${{ matrix.doctrine }}, ${{ matrix.dep }}, PHP ${{ matrix.php }}, ${{ matrix.operating-system }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: ${{ matrix.php }} | |
extensions: intl | |
tools: flex | |
- name: Validate composer.json and composer.lock | |
run: composer validate --strict | |
- name: Cache Composer packages | |
id: composer-cache | |
uses: actions/cache@v4 | |
with: | |
path: vendor | |
key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-php- | |
- name: Install dependencies | |
uses: ramsey/composer-install@v3 | |
with: | |
dependency-versions: ${{ matrix.dep }} | |
composer-options: --prefer-dist --no-progress --no-scripts | |
- name: Install Doctrine version | |
run: composer require -W doctrine/orm:${{ matrix.doctrine }} | |
- name: Run psalm | |
run: vendor/bin/psalm | |
- name: Run phpstan | |
run: vendor/bin/phpstan analyse | |
- name: Validate monorepo | |
run: vendor/bin/monorepo-builder validate | |
- name: Run phpunit | |
run: | | |
vendor/bin/phpunit |