Skip to content

Commit 9e38015

Browse files
committed
wip
1 parent 44f14ec commit 9e38015

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

README.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff 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
156156
on:
157157
push:
158158
159159
jobs:
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>

0 commit comments

Comments
 (0)