File tree 1 file changed +3
-5
lines changed 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change 53
53
- name : Show Docker version
54
54
run : if [[ "$DEBUG" == "true" ]]; then docker version && env; fi
55
55
env :
56
- DEBUG : ${{secrets.DEBUG}}
56
+ DEBUG : ${{ secrets.DEBUG }}
57
57
- name : Download Composer cache dependencies from cache
58
58
id : composer-cache
59
59
run : echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT
64
64
key : ${{ matrix.os }}-composer-${{ hashFiles('**/composer.json') }}
65
65
restore-keys : ${{ matrix.os }}-composer-
66
66
- name : Install dependencies
67
- run : |
68
- composer update --no-interaction $([[ "${{ matrix.mode }}" == low-deps ]] && echo ' --prefer-lowest --prefer-stable')
67
+ run : composer update --no-interaction $([[ "${{ matrix.mode }}" == low-deps ]] && echo ' --prefer-lowest --prefer-stable')
69
68
- name : Run tests
70
- run : |
71
- ./vendor/bin/phpunit --coverage-clover coverage.xml
69
+ run : ./vendor/bin/phpunit --coverage-clover coverage.xml
72
70
env :
73
71
MONGODB_URI : ' mongodb://127.0.0.1/?replicaSet=rs'
74
72
- uses : codecov/codecov-action@v3
You can’t perform that action at this time.
0 commit comments