Skip to content

Repository maintenance, migrate tests #7

Repository maintenance, migrate tests

Repository maintenance, migrate tests #7

Workflow file for this run

name: Test
on: push
jobs:
test:
name: "PHPUnit (PHP ${{ matrix.php }})"
runs-on: ubuntu-latest
strategy:
matrix:
php:
- "8.0"
- "8.1"
- "8.2"
- "8.3"
- "8.4"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php }}"
- name: Install Composer dependencies
run: composer update --no-progress --prefer-dist --optimize-autoloader
- name: Tests
run: composer run-script test