Merge pull request #12 from Shuv6779/master #48
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
# 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 |