We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 137dbfd commit faba972Copy full SHA for faba972
1 file changed
.github/workflows/tests.yml
@@ -40,9 +40,13 @@ jobs:
40
- name: Install dependencies
41
run: composer install --prefer-dist --no-interaction --no-progress
42
43
- - name: Install GnuPG v1 (GnuPG v2 does not work with Github Actions)
+ - name: Install GnuPG v2
44
run: sudo apt-get install -y gnupg2
45
46
+ - name: Execute phpstan
47
+ if: matrix.php >= 7.4
48
+ run: php -dmemory_limit=256M vendor/bin/phpstan analyse -v
49
+
50
- name: Execute tests
51
run: TESTS_GPG_BINARY=/usr/bin/gpg vendor/bin/phpunit --stop-on-error tests
52
0 commit comments