diff --git a/.github/workflows/ci-rust.yaml b/.github/workflows/ci-rust.yaml index 9004658..d7f4d0f 100644 --- a/.github/workflows/ci-rust.yaml +++ b/.github/workflows/ci-rust.yaml @@ -24,11 +24,12 @@ jobs: - name: Test run: cargo llvm-cov --release --all-features --workspace --lcov --output-path lcov.info - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 + if: github.event.repository.fork == false + uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} files: lcov.info - fail_ci_if_error: true + fail_ci_if_error: false pass: name: ✅ Pass ci-rust needs: [test]