Skip to content

Bump actions/checkout from 3 to 4 #85

Bump actions/checkout from 3 to 4

Bump actions/checkout from 3 to 4 #85

Workflow file for this run

# Workflow copied from pmmp/ExamplePlugin@bfc359934c88c0b105aeb1b4d21c51076443d2a9
name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
name: PHPStan analysis
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
php:
- "8.1"
- "8.2"
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: pmmp/[email protected]
with:
php-version: ${{ matrix.php }}
install-path: "./bin"
pm-version-major: 5
- name: Restore Composer package cache
id: composer-cache
uses: actions/cache@v3
with:
path: "~/.cache/composer"
key: "php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}"
restore-keys: "php-${{ matrix.php }}-composer-"
- name: Install PHPStan Composer dependencies
working-directory: phpstan
run: composer install --prefer-dist --no-interaction
- name: Run PHPStan
working-directory: phpstan
run: vendor/bin/phpstan analyze