generated from brokeyourbike/laravel-package-template
-
-
Notifications
You must be signed in to change notification settings - Fork 2
37 lines (30 loc) · 796 Bytes
/
static.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
name: static analysis
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
phpstan:
name: PHPStan
runs-on: ubuntu-latest
timeout-minutes: 5
strategy:
matrix:
php-version: [8.1]
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: "${{ matrix.php-version }}"
coverage: none
extensions: mbstring
tools: composer
- name: Download dependencies
run: composer update --no-interaction --no-progress
- name: Download PHPStan
run: composer bin phpstan require phpstan/phpstan
- name: Execute PHPStan
run: vendor/bin/phpstan analyze --no-progress