From 742ec895777e0fe75094a4e4a38c52cf3cd344df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Benjamin=20St=C3=BCrmer?= Date: Sat, 16 Sep 2023 00:56:46 +0200 Subject: [PATCH] skip coverage --- .github/workflows/check.yaml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/check.yaml b/.github/workflows/check.yaml index 59c0ef3..93bf98a 100644 --- a/.github/workflows/check.yaml +++ b/.github/workflows/check.yaml @@ -38,26 +38,26 @@ jobs: - name: Run cargo test uses: actions-rs/cargo@v1 - env: - CARGO_INCREMENTAL: '0' - RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests' - RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests' with: command: test args: --workspace --all-targets + # env: + # CARGO_INCREMENTAL: '0' + # RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests' + # RUSTDOCFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Cpanic=abort -Zpanic_abort_tests' - - name: rust-grcov - # You may pin to the exact commit or the version. - # uses: actions-rs/grcov@bb47b1ed7883a1502fa6875d562727ace2511248 - uses: actions-rs/grcov@v0.1 + # - name: rust-grcov + # # You may pin to the exact commit or the version. + # # uses: actions-rs/grcov@bb47b1ed7883a1502fa6875d562727ace2511248 + # uses: actions-rs/grcov@v0.1 - - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v3 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - with: - verbose: true - fail_ci_if_error: false + # - name: Upload coverage reports to Codecov + # uses: codecov/codecov-action@v3 + # env: + # CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + # with: + # verbose: true + # fail_ci_if_error: false lints: name: Lint checks