From 9b6027fe782783757f2a2a91e9facbddb5ee65c5 Mon Sep 17 00:00:00 2001 From: Nils <52573120+niStee@users.noreply.github.com> Date: Sun, 25 Feb 2024 04:19:09 +0100 Subject: [PATCH] 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 --- .github/workflows/build-and-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 74f9726f..57f67f4f 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -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 - \ No newline at end of file + fail_ci_if_error: true \ No newline at end of file