File tree 1 file changed +13
-0
lines changed
1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 21
21
name : Integration Tests
22
22
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
23
23
runs-on : ubuntu-20.04
24
+ # https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs
25
+ strategy :
26
+ matrix :
27
+ # https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs#example-adding-configurations
28
+ include :
29
+ - java-version : ' 8'
30
+ allow-failure : false
31
+ - java-version : ' 11'
32
+ allow-failure : true
33
+ - java-version : ' 17'
34
+ allow-failure : true
35
+ # https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs#handling-failures
36
+ continue-on-error : {{ matrix.allow-failure }}
24
37
steps :
25
38
- name : Clone source code
26
39
uses :
actions/[email protected] # https://github.com/actions/checkout
You can’t perform that action at this time.
0 commit comments