From 068c2d70df78a6c052612094185ce73eef79d32d Mon Sep 17 00:00:00 2001 From: Ivan Finch Date: Thu, 12 Sep 2024 22:48:10 +0100 Subject: [PATCH] Another attempt to have a Mac job run --- .github/workflows/publish-to-test-pypi.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-to-test-pypi.yml b/.github/workflows/publish-to-test-pypi.yml index 5236490..a118fd1 100644 --- a/.github/workflows/publish-to-test-pypi.yml +++ b/.github/workflows/publish-to-test-pypi.yml @@ -21,6 +21,7 @@ jobs: needs: - lint runs-on: ${{ matrix.os }} + continue-on-error: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, mac-latest] @@ -44,7 +45,7 @@ jobs: - name: Upload pytest test results uses: actions/upload-artifact@v4 with: - name: coverage-results-${{ matrix.python-version }} + name: coverage-results-${{ matrix.os }}-${{ matrix.python-version }} path: coverage.xml # Use always() to always run this step to publish test results when there are test failures if: ${{ always() }}