Skip to content

Add PHP 8.4 to matrix #17

Add PHP 8.4 to matrix

Add PHP 8.4 to matrix #17

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:
- '7.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