Skip to content

Updated setup.py

Updated setup.py #50

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Unit tests
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up SWIPL
run: |
sudo apt-add-repository ppa:swi-prolog/stable -y
sudo apt-get update
sudo apt-get install swi-prolog=8.4* swi-prolog-nox=8.4* swi-prolog-x=8.4* -y
- name: Set up Python 3.9
uses: actions/setup-python@v2
with:
python-version: 3.9
- name: Install dependencies
run: |
git clone https://github.com/ML-KULeuven/pyswip.git
pip install pyswip/
python -m pip install --upgrade pip
pip install pytest
pip install .
- name: Test with pytest
run: |
python -m deepproblog test