File tree Expand file tree Collapse file tree 1 file changed +7
-10
lines changed Expand file tree Collapse file tree 1 file changed +7
-10
lines changed Original file line number Diff line number Diff line change @@ -36,16 +36,13 @@ jobs:
36
36
docker-compose run --rm tests composer install --no-interaction
37
37
- name : Generating code coverage
38
38
run : |
39
- docker-compose run --rm tests mkdir -p build/logs
40
- docker-compose run --rm tests ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
41
- - name : Send coveralls
42
- run : |
39
+ mkdir -p build/logs
43
40
docker-compose run --rm tests mkdir -p build/logs
44
41
docker-compose run --rm \
45
- -e COVERALLS_REPO_TOKEN=${COVERALLS_REPO_TOKEN} \
46
- -e COVERALLS_RUN_LOCALLY=${COVERALLS_RUN_LOCALLY} \
47
- tests \
48
- vendor/bin/php-coveralls -v
42
+ tests ./vendor/bin/phpunit --coverage-clover build/logs/clover.xml
43
+ ls -alt build/logs
44
+ - name : Send coveralls
45
+ run : php vendor/bin/php-coveralls -v
49
46
env :
50
- COVERALLS_RUN_LOCALLY : ${{secrets.COVERALLS_RUN_LOCALLY}}
51
- COVERALLS_REPO_TOKEN : ${{secrets.COVERALLS_REPO_TOKEN }}
47
+ COVERALLS_RUN_LOCALLY : 1
48
+ COVERALLS_REPO_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments