Update GitHub Actions workflow for Codecov integration (#718)

- Refine the testing matrix to include only stable and nightly versions of Rust
- Add 'fail_ci_if_error' option to Codecov step for stricter CI checks
- Ensure newline at end of file
This commit is contained in:
Nils
2024-02-25 04:19:09 +01:00
committed by GitHub
parent 0e30e05ce8
commit 9b6027fe78

View File

@@ -10,7 +10,7 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
rust: [stable, beta, nightly]
rust: [stable, nightly]
steps:
- name: Checkout repository
uses: actions/checkout@v4
@@ -54,4 +54,4 @@ jobs:
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: lcov.info
fail_ci_if_error: true