Skip to content

Commit fd7529c

Browse files
committed
Fix integration tests: install java:wq
1 parent 2bab264 commit fd7529c

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/integration-tests.yml

+9-1
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,27 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20+
java-version: [8]
2021
python-version: ["3.8.17", "3.11.4", "3.12.0b4"]
2122
event_loop_manager: ["libev", "asyncio", "asyncore"]
2223
exclude:
2324
- python-version: "3.12.0b4"
2425
event_loop_manager: "asyncore"
2526

2627
steps:
27-
- uses: actions/checkout@v3
28+
- uses: actions/checkout@v4
2829
- name: setup pyenv ${{ matrix.python-version }}
2930
uses: "gabrielfalcao/pyenv-action@v16"
3031
with:
3132
default: 2.7.14
3233
versions: ${{ matrix.python-version }}
34+
35+
- name: Set up JDK ${{ matrix.java-version }}
36+
uses: actions/setup-java@v4
37+
with:
38+
java-version: ${{ matrix.java-version }}
39+
distribution: 'adopt'
40+
3341
- name: Test with pytest
3442
run: |
3543
export EVENT_LOOP_MANAGER=${{ matrix.event_loop_manager }}

0 commit comments

Comments
 (0)