FIX: grounding reordering for FOL Not node #150
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- python-version: "3.10" | |
args: "" | |
os: ubuntu-latest | |
- python-version: 3.9 | |
args: "" | |
os: ubuntu-latest | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v2 | |
- name: Setup Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Upgrade pip | |
run: python -m pip install --upgrade pip setuptools wheel | |
- name: Install graphviz | |
run: sudo apt-get install -y libgraphviz-dev | |
- name: Install dependencies | |
run: pip install -e .[test] | |
- name: Install dependencies | |
run: pip install pytest | |
- name: Run tests with ${{ matrix.args }} | |
run: pytest ${{ matrix.args }} |