Skip to content

Add newer PHP and ORM versions to test suite #50

Add newer PHP and ORM versions to test suite

Add newer PHP and ORM versions to test suite #50

Workflow file for this run

name: PHP CI
on: [push]
jobs:
build-test:
runs-on: ubuntu-latest
strategy:
matrix:
php-version:
- '7.3'
- '7.4'
- '8.0'
- '8.1'
- '8.2'
- '8.3'
orm-version:
- '2.7'
- '3.0'
name: PHP ${{ matrix.php-version }} / ORM ${{ matrix.orm-version }}
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php-version }}"
extensions: gd, zip, mongodb
- run: composer validate
- id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
- uses: actions/cache@v1
with:
path: ${{ steps.composer-cache.outputs.dir }}
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-
- run: composer install
- run: composer require --dev "doctrine/orm:^${{ matrix.orm-version }}"
- run: vendor/bin/phpunit