-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (38 loc) · 1.13 KB
/
static-analysis.yaml
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
name: "Static Analysis"
on:
pull_request:
branches:
- 'main'
push:
branches:
- 'main'
jobs:
syntax-linting:
runs-on: 'ubuntu-20.04'
strategy:
matrix:
php:
- '8.2'
- '8.3'
steps:
- uses: 'actions/checkout@v2'
- uses: 'shivammathur/setup-php@v2'
with:
php-version: '${{ matrix.php }}'
- run: 'find src/ -type f -name "*.php" -print0 | xargs -0 -n1 -P4 php -l -n | (! grep -v "No syntax errors detected" )'
phpstan:
runs-on: 'ubuntu-22.04'
strategy:
matrix:
php:
- '8.2'
- '8.3'
steps:
- uses: 'actions/checkout@v2'
- uses: 'shivammathur/setup-php@v2'
with:
php-version: '${{ matrix.php }}'
- uses: 'ramsey/composer-install@v2'
with:
dependency-versions: 'highest'
- run: './vendor/bin/phpstan analyze --no-progress --error-format="github"'