Skip to content

Commit

Permalink
Specify Python 3.12 version for Java interop tests
Browse files Browse the repository at this point in the history
Otherwise the action does nothing and uses the system-installed Python:

```
Run actions/setup-python@0a5c615
Warning: Neither 'python-version' nor 'python-version-file' inputs were supplied. Attempting to find '.python-version' file.
Warning: .python-version doesn't exist.
Warning: The `python-version` input is not set.  The version of Python currently in `PATH` will be used.
```

Signed-off-by: Martin Tzvetanov Grigorov <[email protected]>
  • Loading branch information
martin-g committed Oct 25, 2024
1 parent ed85a81 commit ea1bd2d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/test-lang-java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,6 +112,8 @@ jobs:

- name: 'Setup Python for Generating Input Data'
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
with:
python-version: '3.12'

- name: 'Apt Install Compression Libs Required by Python'
run: |
Expand Down

0 comments on commit ea1bd2d

Please sign in to comment.