From 1a0d21b9544d4c114c9704994efcd5f890d3d377 Mon Sep 17 00:00:00 2001 From: Kaushik Kulkarni Date: Wed, 6 Jul 2022 11:03:28 -0500 Subject: [PATCH] adds a CI job with barvinok --- .github/workflows/ci.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2017f93cf..f6b7ef104 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -104,6 +104,20 @@ jobs: ( test_py_project ) ( test_py_project ) + pytest_with_barvinok: + name: Conda Pytest with Barvinok + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: "Main Script" + run: | + CONDA_ENVIRONMENT=.test-conda-env-py3.yml + echo "- barvinok" >> "$CONDA_ENVIRONMENT" + curl -L -O https://tiker.net/ci-support-v0 + . ./ci-support-v0 + build_py_project_in_conda_env + test_py_project + examples: name: Conda Examples runs-on: ubuntu-latest