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:
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 }}
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
You can’t perform that action at this time.
0 commit comments