Skip to content

ORM3 compatibility

ORM3 compatibility #17

Workflow file for this run

name: ORM2 Tests
on: ["push", "pull_request"]
jobs:
build:
name: PHP ${{ matrix.php }} (${{ matrix.dependency }})
runs-on: ubuntu-latest
strategy:
matrix:
dependency:
- lowest
- highest
php:
- 7.2
- 7.3
- 7.4
- 8.0
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- run: composer validate
- uses: "ramsey/composer-install@v2"
with:
dependency-versions: "${{ matrix.dependency }}"
- run: composer run test