File tree Expand file tree Collapse file tree 1 file changed +17
-17
lines changed Expand file tree Collapse file tree 1 file changed +17
-17
lines changed Original file line number Diff line number Diff line change 1
1
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
2
2
3
3
on :
4
- - " pull_request"
5
- - " push"
4
+ - pull_request
5
+ - push
6
6
7
- name : " CI "
7
+ name : CI
8
8
9
9
permissions :
10
10
contents : read
11
11
12
12
env :
13
- COMPOSER_ROOT_VERSION : " 7.0.x-dev"
13
+ COMPOSER_ROOT_VERSION : 7.0.x-dev
14
14
15
15
jobs :
16
16
coding-guidelines :
@@ -61,26 +61,26 @@ jobs:
61
61
fail-fast : false
62
62
matrix :
63
63
php-version :
64
- - " 8.3"
65
- - " 8.4"
66
- - " 8.5"
64
+ - 8.3
65
+ - 8.4
66
+ - 8.5
67
67
68
68
steps :
69
- - name : " Checkout"
70
- uses : " actions/checkout@v4"
69
+ - name : Checkout
70
+ uses : actions/checkout@v4
71
71
72
- - name : " Install PHP with extensions"
73
- uses : " shivammathur/setup-php@v2"
72
+ - name : Install PHP with extensions
73
+ uses : shivammathur/setup-php@v2
74
74
with :
75
- php-version : " ${{ matrix.php-version }}"
76
- coverage : " xdebug"
75
+ php-version : ${{ matrix.php-version }}
76
+ coverage : xdebug
77
77
ini-values : memory_limit=-1
78
78
79
- - name : " Install dependencies with Composer"
80
- run : " ./tools/composer update --no-ansi --no-interaction --no-progress"
79
+ - name : Install dependencies with Composer
80
+ run : ./tools/composer update --no-ansi --no-interaction --no-progress
81
81
82
- - name : " Run tests with PHPUnit"
83
- run : " vendor/bin/phpunit --log-junit junit.xml --coverage-clover=coverage.xml"
82
+ - name : Run tests with PHPUnit
83
+ run : vendor/bin/phpunit --log-junit junit.xml --coverage-clover=coverage.xml
84
84
85
85
- name : Upload test results to Codecov.io
86
86
if : ${{ !cancelled() }}
You can’t perform that action at this time.
0 commit comments