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.
1 parent a620e0e commit a681d90Copy full SHA for a681d90
.github/workflows/phpstan.yml
@@ -16,6 +16,12 @@ jobs:
16
fail-fast: false
17
matrix:
18
include:
19
+ - php-version: "8.0"
20
+ db-image: 'mysql:8.0'
21
+ reflector: "pdo-mysql"
22
+ mode: "recording"
23
+ phpstan-version: "@dev"
24
+
25
- php-version: "8.0"
26
db-image: 'mysql:8.0'
27
reflector: "pdo-mysql"
@@ -70,6 +76,11 @@ jobs:
70
76
with:
71
77
composer-options: "--prefer-dist --no-progress"
72
78
79
+ - name: Enable phpstan@dev
80
+ if: "${{matrix.phpstan-version != ''}}"
81
+ run: |
82
+ composer update phpstan/phpstan:@dev
83
73
84
- name: Setup mysql
74
85
run: |
75
86
mysql -uroot -h127.0.0.1 -proot < tests/schema.sql
0 commit comments