diff options
author | 2021-12-25 13:04:47 -0800 | |
---|---|---|
committer | 2021-12-25 13:04:47 -0800 | |
commit | efb4b0b17d3a8eb0821c4a54e2b29c5feb61dc80 (patch) | |
tree | c2a2f478e2a27093c18fef5db49a645e87d9ee41 | |
parent | CI: create a matrix with a self-hosted runner with cgroupv2 (diff) |
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.
-rw-r--r-- | .github/workflows/lint-test-build-push.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
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: |