-
Notifications
You must be signed in to change notification settings - Fork 2
37 lines (30 loc) · 871 Bytes
/
phpstan.yml
File metadata and controls
37 lines (30 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
name: PHPStan analysis
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
php: ["8.2"]
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@2.25.5
with:
php-version: ${{ matrix.php }}
- name: Restore Composer package cache
id: composer-cache
uses: actions/cache@v4
with:
path: "~/.cache/composer"
key: "php-${{ matrix.php }}-composer-${{ hashFiles('**/composer.json') }}"
restore-keys: "php-${{ matrix.php }}-composer-"
- name: Install PHPStan Composer dependencies
run: composer install --prefer-dist --no-interaction --ignore-platform-reqs
- name: Run PHPStan
run: vendor/bin/phpstan analyze