From efb4b0b17d3a8eb0821c4a54e2b29c5feb61dc80 Mon Sep 17 00:00:00 2001 From: MarkKoz Date: Sat, 25 Dec 2021 13:04:47 -0800 Subject: CI: disable setup-python action on self-hosted runner Python 3.9 is available on the self-hosted runner and is sufficient to run coveralls. Trying to get the setup-python action supported on the self-hosted runner proved to be problematic. --- .github/workflows/lint-test-build-push.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/lint-test-build-push.yaml b/.github/workflows/lint-test-build-push.yaml index 17f30b0..020b2a5 100644 --- a/.github/workflows/lint-test-build-push.yaml +++ b/.github/workflows/lint-test-build-push.yaml @@ -148,7 +148,7 @@ jobs: # Note: This step runs even if the test step failed to make # sure we process the coverage reports. - name: Setup python - if: always() && steps.run_tests.outputs.started == 'true' + if: matrix.os != 'self-hosted' && always() && steps.run_tests.outputs.started == 'true' id: python uses: actions/setup-python@v2 with: -- cgit v1.2.3