Skip to content

marker_reprogramming: add CEGAR implementation (default) #83

marker_reprogramming: add CEGAR implementation (default)

marker_reprogramming: add CEGAR implementation (default) #83

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
max-parallel: 4
matrix:
python-version: ['3.9', '3.10', '3.11']
clingo-version: ['5.6']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install "clingo==${{ matrix.clingo-version }}.*"
python -m pip install .
- name: Test with pytest
run: |
pip install pytest
pytest