Skip to content

Commit 58b9e88

Browse files
committed
Make pipeline install java
Currently we relay on java that comes with system Let's install particular java version to know and be sure what it is running on
1 parent 1e82fe3 commit 58b9e88

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

.github/workflows/integration-tests.yml

Lines changed: 8 additions & 0 deletions
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)