Skip to content

Tightening CallError validation by adding structure checks and normal… #8

Tightening CallError validation by adding structure checks and normal…

Tightening CallError validation by adding structure checks and normal… #8

Workflow file for this run

name: PHPUnit
on:
push:
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
coverage: none
- name: Validate Composer files
run: composer validate --strict --no-check-publish
- name: Install dependencies
run: composer install --prefer-dist --no-progress --no-interaction
- name: Run PHPUnit
run: vendor/bin/phpunit