We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 479a97d commit 5beca2bCopy full SHA for 5beca2b
.github/workflows/build-ci.yml
@@ -34,11 +34,7 @@ jobs:
34
run: |
35
docker version
36
- name: Debug if needed
37
- run: |
38
- export DEBUG=${DEBUG:-false}
39
- if [[ "$DEBUG" == "true" ]]; then
40
- env
41
- fi
+ run: if [[ "$DEBUG" == "true" ]]; then env fi;
42
env:
43
DEBUG: ${{secrets.DEBUG}}
44
- name: Install dependencies
@@ -54,9 +50,8 @@ jobs:
54
50
MYSQL_PORT: 3307
55
51
- name: Send coveralls
56
52
57
- composer global require cedx/coveralls
58
53
export PATH="$PATH:~/.composer/vendor/bin/"
59
- coveralls build/logs/clover.xml
+ coveralls build/logs/clover.xml -v
60
61
- COVERALLS_RUN_LOCALLY: 1
+ # COVERALLS_RUN_LOCALLY: 1
62
COVERALLS_REPO_TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments