Skip to content

Commit 9b330c6

Browse files
authored
Do not fail if codecov fails (#302)
* 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
1 parent d06fc46 commit 9b330c6

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/CI.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
- ubuntu-latest
3535
- windows-latest
3636
- macOS-13 # intel
37-
- macOS-14 # arm
37+
- macOS-latest # arm
3838
threads:
3939
- '1'
4040
- '2'
@@ -64,13 +64,13 @@ jobs:
6464
- os: macOS-13
6565
version: '1.6'
6666
provider: 'mkl'
67-
- os: macOS-14
67+
- os: macOS-latest
6868
arch: x86
69-
- os: macOS-14
69+
- os: macOS-latest
7070
arch: x64
71-
- os: macOS-14
71+
- os: macOS-latest
7272
version: '1.6'
73-
- os: macOS-14
73+
- os: macOS-latest
7474
provider: 'mkl'
7575

7676
steps:
@@ -91,7 +91,6 @@ jobs:
9191
- uses: julia-actions/julia-processcoverage@v1
9292
- uses: codecov/codecov-action@v4
9393
with:
94-
fail_ci_if_error: true
9594
token: ${{ secrets.CODECOV_TOKEN }} # required
9695
file: lcov.info
9796

0 commit comments

Comments
 (0)