Skip to content

Force object on generic #79

Force object on generic

Force object on generic #79

Workflow file for this run

name: Test Suite
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
tests:
name: Test Suite - PHP ${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
operating-system: [ ubuntu-latest ]
php: [ 8.1, 8.2, 8.3, 8.4 ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Validate composer.json and composer.lock
run: composer validate
- name: Install dependencies
run: composer install --no-progress --no-suggest
- name: Run test suite
run: vendor/bin/phpunit --no-coverage