Skip to content

Commit c4c296e

Browse files
Fix/Tweak
1 parent 4a2a100 commit c4c296e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
php-version: 8.1
2626
coverage: none
2727

28-
- name: Run friendsofphp/php-cs-fixer
28+
- name: Run PHP-CS-Fixer
2929
run: ./tools/php-cs-fixer fix --dry-run --show-progress=dots --using-cache=no --verbose
3030

3131
type-checker:
@@ -43,10 +43,10 @@ jobs:
4343
php-version: 8.1
4444
coverage: none
4545

46-
- name: Update dependencies with composer
46+
- name: Install dependencies with Composer
4747
run: ./tools/composer update --no-interaction --no-ansi --no-progress
4848

49-
- name: Run vimeo/psalm
49+
- name: Run Psalm
5050
run: ./tools/psalm --config=.psalm/config.xml --no-progress --shepherd --show-info=false --stats
5151

5252
tests:
@@ -72,17 +72,17 @@ jobs:
7272
coverage: "pcov"
7373
ini-values: memory_limit=-1
7474

75-
- name: "Cache dependencies installed with composer"
75+
- name: "Cache dependencies installed with Composer"
7676
uses: "actions/cache@v2"
7777
with:
7878
path: "~/.composer/cache"
7979
key: "php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-${{ hashFiles('**/composer.json') }}"
8080
restore-keys: "php${{ matrix.php-version }}-composer-${{ matrix.dependencies }}-"
8181

82-
- name: "Install dependencies with composer"
82+
- name: "Install dependencies with Composer"
8383
run: "./tools/composer update --no-ansi --no-interaction --no-progress"
8484

85-
- name: "Run tests with phpunit/phpunit"
85+
- name: "Run tests with PHPUnit"
8686
run: "vendor/bin/phpunit --coverage-clover=coverage.xml"
8787

8888
- name: "Send code coverage report to Codecov.io"

0 commit comments

Comments
 (0)