Skip to content

Bump ws from 8.17.0 to 8.17.1 #3

Bump ws from 8.17.0 to 8.17.1

Bump ws from 8.17.0 to 8.17.1 #3

Workflow file for this run

name: PHPStan
on:
push:
branches: [5.1]
pull_request:
branches: [5.1]
workflow_dispatch:
jobs:
PHPStan:
strategy:
fail-fast: false
matrix:
php_versions: ['8.1', '8.2', '8.3']
runs-on: ubuntu-latest
name: PHPStan - ${{ matrix.php_versions }}
steps:
- uses: actions/checkout@v4
- name: Setup PHP, with composer and extensions
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php_versions }}
- name: Install Dependencies
run: composer install --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Run PHPStan
run: vendor/bin/phpstan analyse