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 b314d10 commit d39efd4Copy full SHA for d39efd4
.github/workflows/phpstan.yml
@@ -5,22 +5,24 @@ on:
5
paths:
6
- '**.php'
7
- 'phpstan.neon.dist'
8
+ - '.github/workflows/phpstan.yml'
9
10
jobs:
11
phpstan:
12
name: phpstan
13
runs-on: ubuntu-latest
14
+ timeout-minutes: 5
15
steps:
16
- uses: actions/checkout@v4
17
18
- name: Setup PHP
19
uses: shivammathur/setup-php@v2
20
with:
- php-version: '8.1'
21
+ php-version: '8.3'
22
coverage: none
23
24
- name: Install composer dependencies
- uses: ramsey/composer-install@v2
25
+ uses: ramsey/composer-install@v3
26
27
- name: Run PHPStan
28
run: ./vendor/bin/phpstan --error-format=github
0 commit comments