Skip to content

Update PHPUnit config #31

Update PHPUnit config

Update PHPUnit config #31

Workflow file for this run

name: Test
on:
push:
branches-ignore:
- 'main'
tags-ignore:
- '**'
env:
APP_ENV: test
APP_DEBUG: 0
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
php-version:
- 8.1
- 8.2
- 8.3
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
ini-values: assert.exception=1, zend.assertions=1
- uses: ramsey/composer-install@v2
- name: PHPUnit
run: vendor/bin/phpunit