Skip to content

Commit

Permalink
Make pipeline install java
Browse files Browse the repository at this point in the history
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
  • Loading branch information
dkropachev committed Dec 20, 2024
1 parent 1e82fe3 commit 58b9e88
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
java-version: [8]
python-version: ["3.8.17", "3.11.4", "3.12.0b4"]
event_loop_manager: ["libev", "asyncio", "asyncore"]
exclude:
Expand All @@ -24,6 +25,13 @@ jobs:

steps:
- uses: actions/checkout@v3

- name: Set up JDK ${{ matrix.java-version }}
uses: actions/setup-java@v4
with:
java-version: ${{ matrix.java-version }}
distribution: 'adopt'

- name: setup pyenv ${{ matrix.python-version }}
uses: "gabrielfalcao/pyenv-action@v16"
with:
Expand Down

0 comments on commit 58b9e88

Please sign in to comment.