File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -27,20 +27,20 @@ jobs:
27
27
MYSQL_ALLOW_EMPTY_PASSWORD : ' yes'
28
28
MYSQL_DATABASE : ' unittest'
29
29
MYSQL_ROOT_PASSWORD :
30
- name : PHP ${{ matrix.php }} with mongo ${{ matrix.mongodb }}
30
+ name : PHP v ${{ matrix.php }} with Mongo v ${{ matrix.mongodb }}
31
31
32
32
steps :
33
33
- uses : actions/checkout@v1
34
- - name : Show php version
34
+ - name : Show PHP version
35
35
run : php${{ matrix.php }} -v && composer -V
36
- - name : Debug if needed
36
+ - name : Show Docker version
37
37
run : if [[ "$DEBUG" == "true" ]]; then docker version && env; fi
38
38
env :
39
39
DEBUG : ${{secrets.DEBUG}}
40
- - name : Get Composer Cache Directory
40
+ - name : Download Composer cache
41
41
id : composer-cache
42
42
run : echo "::set-output name=dir::$(composer config cache-files-dir)"
43
- - name : Cache dependencies
43
+ - name : Cache Composer dependencies
44
44
uses : actions/cache@v1
45
45
with :
46
46
path : ${{ steps.composer-cache.outputs.dir }}
49
49
- name : Install dependencies
50
50
run : |
51
51
composer install --no-interaction
52
- - name : Generating code coverage
52
+ - name : Run tests
53
53
run : |
54
54
mkdir -p build/logs
55
55
./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
You can’t perform that action at this time.
0 commit comments