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
env :
10
- COMPOSER_ROOT_VERSION : " 6.0.x-dev"
10
+ COMPOSER_ROOT_VERSION : 6.0.x-dev
11
11
12
12
permissions :
13
13
contents : read
@@ -61,25 +61,25 @@ 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
78
- - name : " Install dependencies with Composer"
79
- run : " ./tools/composer update --no-ansi --no-interaction --no-progress"
78
+ - name : Install dependencies with Composer
79
+ run : ./tools/composer update --no-ansi --no-interaction --no-progress
80
80
81
- - name : " Run tests with PHPUnit"
82
- run : " vendor/bin/phpunit --log-junit junit.xml --coverage-clover=coverage.xml"
81
+ - name : Run tests with PHPUnit
82
+ run : vendor/bin/phpunit --log-junit junit.xml --coverage-clover=coverage.xml
83
83
84
84
- name : Upload test results to Codecov.io
85
85
if : ${{ !cancelled() }}
You can’t perform that action at this time.
0 commit comments