Skip to content

Commit 9f7e711

Browse files
committed
fixup
1 parent 59f77da commit 9f7e711

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/netsim_runner.yaml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,8 +198,10 @@ jobs:
198198
overwrite: true
199199

200200
- 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
203205
204206
- name: Find Docs Comment
205207
if: ${{ inputs.pr_number != '' }}

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
strategy:
3535
fail-fast: false
3636
matrix:
37-
name: [ubuntu-latest, macOS-arm-latest, maxOS-x64-latest]
37+
name: [ubuntu-latest, macOS-arm-latest, macOS-x64-latest]
3838
rust: [ '${{ inputs.rust-version }}' ]
3939
features: [all, none, default]
4040
include:

0 commit comments

Comments
 (0)