Skip to content

feat: drop support for PHP < 8.1 #13

feat: drop support for PHP < 8.1

feat: drop support for PHP < 8.1 #13

Workflow file for this run

name: "Tests"
on:
push:
pull_request:
permissions:
contents: read
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
php: ['8.1', '8.2', '8.3']
name: "Tests"
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
coverage: pcov
- run: composer install --no-progress
- run: composer run-script phpstan
- run: composer run-script phpunit