File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -198,8 +198,10 @@ jobs:
198
198
overwrite : true
199
199
200
200
- name : Fail Job if Tests Failed
201
- if : ${{ failure() && steps.run_tests.outcome == 'failure' }}
202
- run : exit 1
201
+ if : ${{ steps.run_tests.outcome == 'failure' }}
202
+ run : |
203
+ echo "Tests failed logs are available at: ${{steps.upload-report.outputs.artifact-url}}"
204
+ exit 1
203
205
204
206
- name : Find Docs Comment
205
207
if : ${{ inputs.pr_number != '' }}
Original file line number Diff line number Diff line change 34
34
strategy :
35
35
fail-fast : false
36
36
matrix :
37
- name : [ubuntu-latest, macOS-arm-latest, maxOS -x64-latest]
37
+ name : [ubuntu-latest, macOS-arm-latest, macOS -x64-latest]
38
38
rust : [ '${{ inputs.rust-version }}' ]
39
39
features : [all, none, default]
40
40
include :
You can’t perform that action at this time.
0 commit comments