File tree Expand file tree Collapse file tree 1 file changed +6
-5
lines changed
Expand file tree Collapse file tree 1 file changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -148,16 +148,16 @@ jobs:
148148</details>
149149
150150<details>
151- <summary>Run `$ pint --test ` with the lowest supported PHP minor version.</summary>
151+ <summary>Run `phpstan ` with the lowest supported PHP minor version.</summary>
152152
153153` ` ` yaml
154- name: Pint
154+ name: PHPStan
155155
156156on:
157157 push:
158158
159159jobs:
160- pint :
160+ phpstan :
161161 runs-on: ubuntu-latest
162162 steps:
163163 - uses: actions/checkout@v4
@@ -168,9 +168,10 @@ jobs:
168168 - uses: shivammathur/setup-php@v2
169169 with:
170170 php-version: ${{ fromJSON(steps.php-matrix.outputs.matrix).lowest }}
171- tools: pint
172171
173- - run: pint --test
172+ - run: composer install
173+
174+ - run: vendor/bin/phpstan analyse src
174175` ` `
175176
176177</details>
You can’t perform that action at this time.
0 commit comments