File tree 3 files changed +8
-8
lines changed 3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 27
27
fail-fast : false
28
28
matrix :
29
29
php-version :
30
- - ' 7.3'
31
30
- ' 7.4'
32
31
- ' 8.0'
32
+ - ' 8.1'
33
33
34
34
steps :
35
35
- name : Checkout repository
38
38
- name : Setup PHP
39
39
uses : shivammathur/setup-php@v2
40
40
with :
41
- php-version : ' 8.0 '
41
+ php-version : ${{ matrix.php-version }}
42
42
extensions : tokenizer
43
43
coverage : none
44
44
60
60
run : composer config --global github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}
61
61
62
62
- name : Install dependencies on tools
63
- run : composer update --ansi --no-interaction
63
+ run : composer update --ansi
64
64
65
65
- name : Run PHP CS Fixer
66
66
run : vendor/bin/php-cs-fixer fix --verbose --ansi --dry-run --using-cache=no --diff
Original file line number Diff line number Diff line change 27
27
fail-fast : false
28
28
matrix :
29
29
php-version :
30
- - ' 7.3'
31
30
- ' 7.4'
32
31
- ' 8.0'
32
+ - ' 8.1'
33
33
34
34
steps :
35
35
- name : Checkout repository
38
38
- name : Setup PHP
39
39
uses : shivammathur/setup-php@v2
40
40
with :
41
- php-version : ' 8.0 '
41
+ php-version : ${{ matrix.php-version }}
42
42
extensions : tokenizer
43
43
coverage : none
44
44
72
72
run : composer config --global github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}
73
73
74
74
- name : Install dependencies
75
- run : composer update --ansi --no-interaction
75
+ run : composer update --ansi
76
76
77
77
- name : Run PHPStan
78
78
run : vendor/bin/phpstan analyse --ansi
Original file line number Diff line number Diff line change 27
27
fail-fast : false
28
28
matrix :
29
29
php-version :
30
- - ' 7.3'
31
30
- ' 7.4'
32
31
- ' 8.0'
32
+ - ' 8.1'
33
33
34
34
steps :
35
35
- name : Checkout repository
60
60
run : composer config --global github-oauth.github.com ${{ secrets.GITHUB_TOKEN }}
61
61
62
62
- name : Install dependencies
63
- run : composer update --ansi --no-interaction
63
+ run : composer update --ansi
64
64
65
65
- name : Run Coding Standards Test Suite
66
66
run : vendor/bin/phpunit --colors=always
You can’t perform that action at this time.
0 commit comments