We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 1e82fe3 + 58b9e88 commit 555c838Copy full SHA for 555c838
.github/workflows/integration-tests.yml
@@ -16,6 +16,7 @@ jobs:
16
strategy:
17
fail-fast: false
18
matrix:
19
+ java-version: [8]
20
python-version: ["3.8.17", "3.11.4", "3.12.0b4"]
21
event_loop_manager: ["libev", "asyncio", "asyncore"]
22
exclude:
@@ -24,6 +25,13 @@ jobs:
24
25
26
steps:
27
- 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
35
- name: setup pyenv ${{ matrix.python-version }}
36
uses: "gabrielfalcao/pyenv-action@v16"
37
with:
0 commit comments