Skip to content

Merge pull request #1 from dc-Ragnarok/chore/rename #3

Merge pull request #1 from dc-Ragnarok/chore/rename

Merge pull request #1 from dc-Ragnarok/chore/rename #3

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: master
workflow_dispatch:
jobs:
PHPUnit:
name: PHPUnit (PHP ${{ matrix.php }})
runs-on: ubuntu-24.04
strategy:
matrix:
php:
- 8.3
- 8.2
- 8.1
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: xdebug
- run: composer install
- run: vendor/bin/phpunit --coverage-text