Skip to content

Commit

Permalink
Do not fail if codecov fails (#302)
Browse files Browse the repository at this point in the history
* Do not fail if codecov fails

We have the codecov token set up correctly, but this is still causing CI to fail. Don't gate PRs being green on codecov.

* macos-latest is now arm64
  • Loading branch information
ViralBShah authored May 21, 2024
1 parent d06fc46 commit 9b330c6
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- ubuntu-latest
- windows-latest
- macOS-13 # intel
- macOS-14 # arm
- macOS-latest # arm
threads:
- '1'
- '2'
Expand Down Expand Up @@ -64,13 +64,13 @@ jobs:
- os: macOS-13
version: '1.6'
provider: 'mkl'
- os: macOS-14
- os: macOS-latest
arch: x86
- os: macOS-14
- os: macOS-latest
arch: x64
- os: macOS-14
- os: macOS-latest
version: '1.6'
- os: macOS-14
- os: macOS-latest
provider: 'mkl'

steps:
Expand All @@ -91,7 +91,6 @@ jobs:
- uses: julia-actions/julia-processcoverage@v1
- uses: codecov/codecov-action@v4
with:
fail_ci_if_error: true
token: ${{ secrets.CODECOV_TOKEN }} # required
file: lcov.info

Expand Down

0 comments on commit 9b330c6

Please sign in to comment.