Skip to content

FIX: grounding reordering for FOL Not node #150

FIX: grounding reordering for FOL Not node

FIX: grounding reordering for FOL Not node #150

Workflow file for this run

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 }}