Skip to content

Commit 0bd8c87

Browse files
authored
Merge pull request #549 from phil-davis/sync-ci-yml
sync ci.yml to match other repos
2 parents f40f3bf + a9dc7a9 commit 0bd8c87

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,19 +23,19 @@ jobs:
2323
- name: Checkout
2424
uses: actions/checkout@v2
2525

26-
- name: Setup PHP, with Composer and Extensions
26+
- name: Setup PHP, with composer and extensions
2727
uses: shivammathur/setup-php@v2 #https://github.com/shivammathur/setup-php
2828
with:
2929
php-version: ${{ matrix.php-versions }}
3030
extensions: mbstring, dom, fileinfo, mysql, redis, opcache
3131
coverage: ${{ matrix.coverage }}
3232
tools: composer
3333

34-
- name: Get Composer Cache Directory
34+
- name: Get composer cache directory
3535
id: composer-cache
3636
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
3737

38-
- name: Cache Composer Dependencies
38+
- name: Cache composer dependencies
3939
uses: actions/cache@v2
4040
with:
4141
path: ${{ steps.composer-cache.outputs.dir }}
@@ -44,7 +44,7 @@ jobs:
4444
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.json') }}
4545
restore-keys: ${{ runner.os }}-composer-
4646

47-
- name: Install Composer Dependencies
47+
- name: Install composer dependencies
4848
run: composer install --no-progress --prefer-dist --optimize-autoloader
4949

5050
- name: Code Analysis (PHP CS-Fixer)
@@ -55,7 +55,7 @@ jobs:
5555
if: matrix.code-analysis == 'yes'
5656
run: composer phpstan
5757

58-
- name: Test with PHPUnit
58+
- name: Test with phpunit
5959
run: vendor/bin/phpunit --configuration tests/phpunit.xml --coverage-clover clover.xml
6060

6161
- name: Code Coverage

0 commit comments

Comments
 (0)