Skip to content

Commit 727163b

Browse files
authored
Add finalize job
1 parent e8ec720 commit 727163b

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,17 @@ on:
99
tags: '*'
1010
merge_group:
1111
jobs:
12+
finalize:
13+
timeout-minutes: 10
14+
needs: [test]
15+
if: always()
16+
runs-on: ${{ matrix.os }}
17+
steps:
18+
- run: |
19+
echo test: ${{ needs.test.result }}
20+
- run: exit 1
21+
if: |
22+
(needs.test.result != 'success')
1223
test:
1324
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
1425
runs-on: ${{ matrix.os }}

0 commit comments

Comments
 (0)