File tree Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Expand file tree Collapse file tree 3 files changed +10
-10
lines changed Original file line number Diff line number Diff line change 7
7
name : Nette Code Checker
8
8
runs-on : ubuntu-latest
9
9
steps :
10
- - uses : actions/checkout@v2
10
+ - uses : actions/checkout@v4
11
11
- uses : shivammathur/setup-php@v2
12
12
with :
13
- php-version : 8.0
13
+ php-version : 8.3
14
14
coverage : none
15
15
16
16
- run : composer create-project nette/code-checker temp/code-checker ^3 --no-progress
@@ -21,10 +21,10 @@ jobs:
21
21
name : Nette Coding Standard
22
22
runs-on : ubuntu-latest
23
23
steps :
24
- - uses : actions/checkout@v2
24
+ - uses : actions/checkout@v4
25
25
- uses : shivammathur/setup-php@v2
26
26
with :
27
- php-version : 8.0
27
+ php-version : 8.3
28
28
coverage : none
29
29
30
30
- run : composer create-project nette/coding-standard temp/coding-standard ^3 --no-progress
Original file line number Diff line number Diff line change @@ -10,12 +10,12 @@ jobs:
10
10
name : PHPStan
11
11
runs-on : ubuntu-latest
12
12
steps :
13
- - uses : actions/checkout@v2
13
+ - uses : actions/checkout@v4
14
14
- uses : shivammathur/setup-php@v2
15
15
with :
16
16
php-version : 8.0
17
17
coverage : none
18
18
19
19
- run : composer install --no-progress --prefer-dist
20
- - run : composer phpstan
20
+ - run : composer phpstan -- --no-progress
21
21
continue-on-error : true # is only informative
Original file line number Diff line number Diff line change 13
13
14
14
name : PHP ${{ matrix.php }} tests
15
15
steps :
16
- - uses : actions/checkout@v2
16
+ - uses : actions/checkout@v4
17
17
- uses : shivammathur/setup-php@v2
18
18
with :
19
19
php-version : ${{ matrix.php }}
@@ -22,17 +22,17 @@ jobs:
22
22
- run : composer install --no-progress --prefer-dist
23
23
- run : vendor/bin/tester tests -s -C
24
24
- if : failure()
25
- uses : actions/upload-artifact@v2
25
+ uses : actions/upload-artifact@v4
26
26
with :
27
- name : output
27
+ name : output-${{ matrix.php }}
28
28
path : tests/output
29
29
30
30
31
31
code_coverage :
32
32
name : Code Coverage
33
33
runs-on : ubuntu-latest
34
34
steps :
35
- - uses : actions/checkout@v2
35
+ - uses : actions/checkout@v4
36
36
- uses : shivammathur/setup-php@v2
37
37
with :
38
38
php-version : 8.0
You can’t perform that action at this time.
0 commit comments