Skip to content

Commit

Permalink
adds one status job to the CI
Browse files Browse the repository at this point in the history
  • Loading branch information
christophkloeffel committed Oct 21, 2024
1 parent 989b83b commit d8a604c
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,3 +103,14 @@ jobs:
if: always()
run: |
util/check_local_modifications.sh
check-all-jobs:
name: Check all jobs
needs: integration-tests
runs-on: ubuntu-24.04
steps:
- name: Success
if: success()
run: exit 0
- name: Failure
if: failure() || cancelled()
run: exit 1

0 comments on commit d8a604c

Please sign in to comment.