From d93e00c42827b35a5d71862cdfabd1bc5f102b97 Mon Sep 17 00:00:00 2001 From: bulricht <108867473+bulricht@users.noreply.github.com> Date: Thu, 14 Mar 2024 17:14:26 +0100 Subject: [PATCH] halfway there, attempting to make PR-checker work as well --- .github/workflows/pr_validation.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/pr_validation.yml b/.github/workflows/pr_validation.yml index 5fb739c..6e5b178 100644 --- a/.github/workflows/pr_validation.yml +++ b/.github/workflows/pr_validation.yml @@ -25,14 +25,13 @@ jobs: - 'tests/**' - name: Set up Python 3.9 - uses: actions/setup-python@v4.6.0 + uses: actions/setup-python@v2 with: python-version: 3.9 - name: Install dependencies run: | make init-dev - pip install -e .[tests] - name: Linting check id: linting_check @@ -53,4 +52,4 @@ jobs: cov-omit-list: tests/*, *__init__*, *__version__*, *__main__*, *exceptions* cov-threshold-single: 85 cov-threshold-total: 90 - async-tests: false + async-tests: true