Skip to content

Issue #62 - fix bug #124

Issue #62 - fix bug

Issue #62 - fix bug #124

Workflow file for this run

name: Stanford NLP OpenIE CI
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 1
matrix:
python-version: [ "3.8", "3.9", "3.10" ]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
sudo apt-get install graphviz
pip install --upgrade pip
pip install tox
- name: Test with tox
run: |
tox