Skip to content

feat: Use jpype instead of subprocess #207

feat: Use jpype instead of subprocess

feat: Use jpype instead of subprocess #207

Workflow file for this run

name: Python testing
on: [push]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
max-parallel: 4
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: '17'
java-package: jdk
distribution: adopt
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: |
3.8
3.9
3.10
3.11
- name: Install dependencies and test
run: |
python -m pip install --upgrade pip
pip install nox
pip install .
nox