Skip to content

Commit

Permalink
Improve test success job (#253)
Browse files Browse the repository at this point in the history
  • Loading branch information
EnricoMi authored Aug 16, 2024
1 parent 3a046ca commit 3b34eef
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,16 @@ jobs:

test_success:
name: "Test success"
if: always()
runs-on: ubuntu-latest
needs: [build-python, test-jvm, test-python, test-snapshots-jvm]

steps:
- name: Noop
- name: "Success"
if: success()
run: true
shell: bash
- name: "Failure"
if: failure()
run: false
shell: bash

0 comments on commit 3b34eef

Please sign in to comment.