File tree 1 file changed +9
-1
lines changed
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -17,19 +17,27 @@ jobs:
17
17
strategy :
18
18
fail-fast : false
19
19
matrix :
20
+ java-version : [8]
20
21
python-version : ["3.8.17", "3.11.4", "3.12.0b4"]
21
22
event_loop_manager : ["libev", "asyncio", "asyncore"]
22
23
exclude :
23
24
- python-version : " 3.12.0b4"
24
25
event_loop_manager : " asyncore"
25
26
26
27
steps :
27
- - uses : actions/checkout@v3
28
+ - uses : actions/checkout@v4
28
29
- name : setup pyenv ${{ matrix.python-version }}
29
30
uses : " gabrielfalcao/pyenv-action@v16"
30
31
with :
31
32
default : 2.7.14
32
33
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
+
33
41
- name : Test with pytest
34
42
run : |
35
43
export EVENT_LOOP_MANAGER=${{ matrix.event_loop_manager }}
You can’t perform that action at this time.
0 commit comments