Skip to content

Commit f7b48b5

Browse files
committed
fix(ci): run tests without continue-on-error, publish results only on success
1 parent 46b9c3c commit f7b48b5

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,9 @@ jobs:
2828

2929
- name: Run tests
3030
run: RUSTFLAGS="-D warnings" cargo nextest run --output junit=junit.xml
31-
continue-on-error: true
3231

3332
- name: Publish test results
34-
if: always()
33+
if: success()
3534
uses: EnricoMi/publish-unit-test-result-action@v2
3635
with:
3736
files: junit.xml

0 commit comments

Comments
 (0)