Skip to content

Commit 9e00e3e

Browse files
committed
Add ci-status step to CI workflow
1 parent b002d92 commit 9e00e3e

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/ci.yml

+13
Original file line numberDiff line numberDiff line change
@@ -303,3 +303,16 @@ jobs:
303303

304304
- run: test ${{ steps.setup1.outputs.mpi }} == intelmpi
305305
- run: test ${{ steps.setup2.outputs.mpi }} == msmpi
306+
307+
ci-status:
308+
runs-on: ubuntu-latest
309+
if: ${{ success() || failure() }}
310+
needs:
311+
-test
312+
-Linux
313+
-container
314+
-macOS:
315+
-Windows
316+
steps:
317+
- uses: step-security/harden-runner@v2
318+
- run: ${{ !(contains(needs.*.result, 'failure')) }}

0 commit comments

Comments
 (0)