Skip to content

Commit 44ee19c

Browse files
committed
Better names for steps
1 parent 18c62a3 commit 44ee19c

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/build-ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,20 +27,20 @@ jobs:
2727
MYSQL_ALLOW_EMPTY_PASSWORD: 'yes'
2828
MYSQL_DATABASE: 'unittest'
2929
MYSQL_ROOT_PASSWORD:
30-
name: PHP ${{ matrix.php }} with mongo ${{ matrix.mongodb }}
30+
name: PHP v${{ matrix.php }} with Mongo v${{ matrix.mongodb }}
3131

3232
steps:
3333
- uses: actions/checkout@v1
34-
- name: Show php version
34+
- name: Show PHP version
3535
run: php${{ matrix.php }} -v && composer -V
36-
- name: Debug if needed
36+
- name: Show Docker version
3737
run: if [[ "$DEBUG" == "true" ]]; then docker version && env; fi
3838
env:
3939
DEBUG: ${{secrets.DEBUG}}
40-
- name: Get Composer Cache Directory
40+
- name: Download Composer cache
4141
id: composer-cache
4242
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
43-
- name: Cache dependencies
43+
- name: Cache Composer dependencies
4444
uses: actions/cache@v1
4545
with:
4646
path: ${{ steps.composer-cache.outputs.dir }}
@@ -49,7 +49,7 @@ jobs:
4949
- name: Install dependencies
5050
run: |
5151
composer install --no-interaction
52-
- name: Generating code coverage
52+
- name: Run tests
5353
run: |
5454
mkdir -p build/logs
5555
./vendor/bin/phpunit --coverage-clover build/logs/clover.xml

0 commit comments

Comments
 (0)