From 186d14337acffd728b04a551391f3cdfd03c65ab Mon Sep 17 00:00:00 2001 From: Jorge Fandinno Date: Thu, 12 Dec 2024 14:57:22 -0600 Subject: [PATCH] conditional tests --- .github/workflows/test.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6c8a6b3..2be0942 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -47,6 +47,11 @@ jobs: python -VV pip list - - name: run tests + - name: run all tests and static checks + if: matrix.python-version == '3.12' && matrix.clingo-version == '>=5.7.0,<5.8.0' run: nox -r + - name: run only tests + if: matrix.python-version != '3.12' || matrix.clingo-version != '>=5.7.0,<5.8.0' + run: nox -rs all_tests +