We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8f127da commit f2a3194Copy full SHA for f2a3194
1 file changed
.github/workflows/phpstan.yml
@@ -4,7 +4,6 @@ on:
4
push:
5
branches:
6
- 'main'
7
- - 'feature/saloon-v2'
8
pull_request:
9
10
- '*'
@@ -14,16 +13,16 @@ jobs:
14
13
name: phpstan
15
runs-on: ubuntu-latest
16
steps:
17
- - uses: actions/checkout@v3
+ - uses: actions/checkout@v4
18
19
- name: Setup PHP
20
uses: shivammathur/setup-php@v2
21
with:
22
- php-version: '8.3'
+ php-version: '8.4'
23
coverage: none
24
25
- name: Install composer dependencies
26
- uses: ramsey/composer-install@v2
+ run: composer install --no-interaction --prefer-dist
27
28
- name: Run PHPStan
29
- run: ./vendor/bin/phpstan analyse --error-format=github
+ run: ./vendor/bin/phpstan analyse --error-format=github
0 commit comments