Skip to content

Merge pull request #97 from TheDragonCode/4.x #112

Merge pull request #97 from TheDragonCode/4.x

Merge pull request #97 from TheDragonCode/4.x #112

Workflow file for this run

name: tests
on: [ push ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
php: [ "8.2", "8.3", "8.4", "8.5" ]
name: PHP ${{ matrix.php }}
steps:
- uses: actions/checkout@v6
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: none
- name: Install dependencies
run: |
composer update \
--no-audit \
--no-suggest \
--no-interaction
- name: Execute tests
run: composer test