Skip to content

Commit

Permalink
ci: don't try to upload code coverage on macOS (google#1020)
Browse files Browse the repository at this point in the history
This keeps failing on macOS, so let's skip it for now
  • Loading branch information
G-Rath authored and josieang committed Jun 6, 2024
1 parent 291f4cb commit 8426715
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/test-action/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ runs:
TEST_ACCEPTANCE: true
run: ./scripts/run_tests.sh
- name: Upload coverage to Codecov
# codecov is currently being flakey on macOS
# https://github.com/codecov/codecov-action/issues/1416
if: ${{ runner.os != 'macOS' }}
uses: codecov/codecov-action@125fc84a9a348dbcf27191600683ec096ec9021c # v4.4.1
with:
token: ${{ inputs.codecov_token }}
Expand Down

0 comments on commit 8426715

Please sign in to comment.