Skip to content

Replace fges dependency with jpype #59

Replace fges dependency with jpype

Replace fges dependency with jpype #59

Workflow file for this run

name: tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
tests:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install Dependencies
run: |
sudo apt-get update -y
python -m pip install --upgrade pip setuptools wheel build
python -m pip install pytest
python -m build
for f in dist/*.whl; do pip install $f[all]; done
- name: Test with pytest
env:
PYTHON_VERSION: ${{ matrix.python-version }}
run: |
python3 -m pytest ./tests