Skip to content

Revert PHP 7.2 support and require at least 8.1 #22

Revert PHP 7.2 support and require at least 8.1

Revert PHP 7.2 support and require at least 8.1 #22

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
jobs:
phpstan:
strategy:
fail-fast: false
matrix:
php:
- '8.1'
- '8.2'
- '8.3'
- '8.4'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
- name: Install Composer packages
uses: ramsey/composer-install@v3
- name: Run PHPStan
run: vendor/bin/phpstan --ansi