Skip to content

Initial commit

Initial commit #2

Workflow file for this run

name: tests
on:
push:
branches: [ main ]
pull_request:
jobs:
phpunit:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ['8.1', '8.3', '8.4']
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
tools: composer
- name: Install dependencies
run: composer install --no-progress --no-suggest --prefer-dist
- name: Run PHPUnit
run: vendor/bin/phpunit tests