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 11# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
22
33on :
4- - " pull_request"
5- - " push"
4+ - pull_request
5+ - push
66
7- name : " CI "
7+ name : CI
88
99env :
10- COMPOSER_ROOT_VERSION : " 6.0.x-dev"
10+ COMPOSER_ROOT_VERSION : 6.0.x-dev
1111
1212permissions :
1313 contents : read
@@ -61,25 +61,25 @@ jobs:
6161 fail-fast : false
6262 matrix :
6363 php-version :
64- - " 8.3"
65- - " 8.4"
66- - " 8.5"
64+ - 8.3
65+ - 8.4
66+ - 8.5
6767
6868 steps :
69- - name : " Checkout"
70- uses : " actions/checkout@v4"
69+ - name : Checkout
70+ uses : actions/checkout@v4
7171
72- - name : " Install PHP with extensions"
73- uses : " shivammathur/setup-php@v2"
72+ - name : Install PHP with extensions
73+ uses : shivammathur/setup-php@v2
7474 with :
75- php-version : " ${{ matrix.php-version }}"
76- coverage : " xdebug"
75+ php-version : ${{ matrix.php-version }}
76+ coverage : xdebug
7777
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
8080
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
8383
8484 - name : Upload test results to Codecov.io
8585 if : ${{ !cancelled() }}
You can’t perform that action at this time.
0 commit comments