forked from PocketMine/ExamplePlugin
-
Notifications
You must be signed in to change notification settings - Fork 23
44 lines (37 loc) · 1 KB
/
main.yml
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
38
39
40
41
42
43
44
name: CI
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
name: PHPStan analysis
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
php:
- "8.1"
- "8.2"
- "8.3"
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: pmmp/setup-php-action@3.1.0
with:
php-version: ${{ matrix.php }}
install-path: "./bin"
pm-version-major: 5
- 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
working-directory: ./phpstan
run: composer install --prefer-dist --no-interaction
- name: Run PHPStan
working-directory: ./phpstan
run: vendor/bin/phpstan analyze