From 0c646c618b832413e33a524be3d212cc438d7490 Mon Sep 17 00:00:00 2001 From: Carlos Date: Fri, 15 Dec 2023 22:22:29 -0800 Subject: [PATCH] Update tests.yml (#28) - switching to carlkidcrypto/os-specific-runner@v2.0.0 --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ce2208c..3963ec7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -21,7 +21,7 @@ jobs: python-version: "3.10" - name: Install python3 requirements... - uses: knicknic/os-specific-run@v1.0.4 + uses: carlkidcrypto/os-specific-runner@v2.0.0 with: linux: cd /home/runner/work/purpleair_api/purpleair_api/ ; python -m pip install --upgrade wheel ; @@ -31,7 +31,7 @@ jobs: python -m pip install requests_mock ; - name: Run unit tests... - uses: knicknic/os-specific-run@v1.0.4 + uses: carlkidcrypto/os-specific-runner@v2.0.0 with: linux: cd /home/runner/work/purpleair_api/purpleair_api/tests ; coverage run -m unittest && coverage json ;