We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5bfc2d4 + 8eae4ba commit 49f1447Copy full SHA for 49f1447
.github/workflows/test_extension.yml
@@ -67,6 +67,26 @@ jobs:
67
- name: PHP 8.1 compatibility
68
run: composer sniffer:php8.1
69
70
+ Static-tests:
71
+ runs-on: ubuntu-latest
72
+
73
+ needs: build
74
75
+ steps:
76
+ - uses: actions/checkout@v3
77
78
+ - name: Cache Composer packages
79
+ id: composer-cache
80
+ uses: actions/cache@v3
81
+ with:
82
+ path: vendor
83
+ key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}
84
+ restore-keys: |
85
+ ${{ runner.os }}-php-
86
87
+ - name: phpstan
88
+ run: composer phpstan
89
90
PHP-Unit:
91
runs-on: ubuntu-latest
92
phpstan.neon.dist
@@ -2,3 +2,6 @@ parameters:
2
level: 5
3
paths:
4
- lib
5
+ excludePaths:
6
+ analyseAndScan:
7
+ - lib/Test
0 commit comments