Skip to content

ci: add testing for PHP 8.3 #59

ci: add testing for PHP 8.3

ci: add testing for PHP 8.3 #59

Workflow file for this run

name: Static Analysis
on: ['push', 'pull_request']
jobs:
phpstan:
runs-on: ubuntu-latest
strategy:
matrix:
dependency-version: [prefer-lowest, prefer-stable]
name: PHPStan (${{ matrix.dependency-version }})
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: 8.3
tools: composer
coverage: none
- name: Install Dependencies
run: composer update --prefer-stable --no-interaction --prefer-dist --no-progress --ansi
- name: Run PHPStan
run: vendor/bin/phpstan analyse --no-progress --ansi