File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -101,21 +101,26 @@ jobs:
101
101
path : coverage
102
102
103
103
- name : Display structure of downloaded files
104
+ id : show
104
105
run : ls -R
105
106
working-directory : coverage
107
+ continue-on-error : true
106
108
107
109
- name : Combine Coverage 👷
110
+ if : ${{ steps.show.outcome != 'failure' }}
108
111
run : |
109
112
shopt -s globstar
110
113
python -m coverage combine coverage/**/.coverage
111
114
112
115
- name : " Upload Combined Coverage Artefact 🚀"
116
+ if : ${{ steps.show.outcome != 'failure' }}
113
117
uses : actions/upload-artifact@v2
114
118
with :
115
119
name : " combined-coverage"
116
120
path : .coverage
117
121
118
122
- name : " Upload Combined Coverage to Coveralls"
123
+ if : ${{ steps.show.outcome != 'failure' }}
119
124
env :
120
125
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
121
126
run : |
You can’t perform that action at this time.
0 commit comments