Skip to content

Commit d1fd249

Browse files
committed
ci: execute integration tests on H2 also under Java 11 and 17
Part of #1350 #1158 #1556
1 parent 6001d3c commit d1fd249

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

Diff for: .github/workflows/integration-tests-h2.yml

+13
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,19 @@ jobs:
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

0 commit comments

Comments
 (0)