File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change 4
4
branches : [master]
5
5
tags : ["*"]
6
6
pull_request :
7
+ merge_group : # GitHub Merge Queue
7
8
jobs :
9
+ finalize :
10
+ timeout-minutes : 10
11
+ needs : [test, docs]
12
+ if : always() # Important: Make sure that this job runs even if the tests fail.
13
+ runs-on : ubuntu-latest # GitHub-hosted runners
14
+ steps :
15
+ - run : |
16
+ echo test: ${{ needs.test.result }}
17
+ echo docs: ${{ needs.docs.result }}
18
+ - run : exit 1
19
+ # Every line except the last line must end with `||`.
20
+ # The last line must NOT end with `||`.
21
+ if : |
22
+ (needs.test.result != 'success') ||
23
+ (needs.docs.result != 'success')
8
24
test :
9
25
name : Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
10
26
runs-on : ${{ matrix.os }}
You can’t perform that action at this time.
0 commit comments