Skip to content

Commit 0aac08d

Browse files
authored
Merge pull request #208 from phil-davis/sync-ci-yml
sync ci.yml to match other repos
2 parents 4470814 + a84f6f5 commit 0aac08d

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,19 +44,20 @@ jobs:
4444
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
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

50-
- name: Code Analysis(PHP CS-Fixer)
50+
- name: Code Analysis (PHP CS-Fixer)
5151
if: matrix.code-analysis == 'yes'
5252
run: php vendor/bin/php-cs-fixer fix --dry-run --diff
5353

54-
- name: Code Analysis(PHPStan)
54+
- name: Code Analysis (PHPStan)
5555
if: matrix.code-analysis == 'yes'
5656
run: composer phpstan
5757

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

61-
- uses: codecov/codecov-action@v2
61+
- name: Code Coverage
62+
uses: codecov/codecov-action@v2
6263
if: matrix.coverage != 'none'

0 commit comments

Comments
 (0)