File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change 2121 name : Integration Tests
2222 # https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idruns-on
2323 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 }}
2437 steps :
2538 - name : Clone source code
2639 uses :
actions/[email protected] # https://github.com/actions/checkout
You can’t perform that action at this time.
0 commit comments