Skip to content

Use native type declarations #12

Use native type declarations

Use native type declarations #12

Workflow file for this run

name: PHPUnit
on: [push, pull_request]
jobs:
build:
name: Run tests on ${{ matrix.php }}
runs-on: ubuntu-latest
strategy:
matrix:
php: [ '7.4', '8.0', '8.1', '8.2', '8.3', '8.4' ]
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Composer Install
run: composer install --no-progress
- name: Run Tests
run: vendor/bin/phpunit