Skip to content

Commit 555c838

Browse files
authored
Merge pull request #396 from scylladb/dk/add-java-instalation-step
Add java installation step
2 parents 1e82fe3 + 58b9e88 commit 555c838

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/integration-tests.yml

+8
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ jobs:
1616
strategy:
1717
fail-fast: false
1818
matrix:
19+
java-version: [8]
1920
python-version: ["3.8.17", "3.11.4", "3.12.0b4"]
2021
event_loop_manager: ["libev", "asyncio", "asyncore"]
2122
exclude:
@@ -24,6 +25,13 @@ jobs:
2425

2526
steps:
2627
- uses: actions/checkout@v3
28+
29+
- name: Set up JDK ${{ matrix.java-version }}
30+
uses: actions/setup-java@v4
31+
with:
32+
java-version: ${{ matrix.java-version }}
33+
distribution: 'adopt'
34+
2735
- name: setup pyenv ${{ matrix.python-version }}
2836
uses: "gabrielfalcao/pyenv-action@v16"
2937
with:

0 commit comments

Comments
 (0)