File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff 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 }} 
 
 
   
 
     
   
   
          
    
    
     
    
      
     
     
    You can’t perform that action at this time.
  
 
    
  
    
      
        
     
       
      
     
   
 
    
    
  
 
  
 
     
    
0 commit comments