From 65e636d4e5c447ede6b59c2cc53a7411fadca99a Mon Sep 17 00:00:00 2001 From: StaffEngineer <111751109+StaffEngineer@users.noreply.github.com> Date: Fri, 6 Oct 2023 13:26:24 +0100 Subject: [PATCH] disable coverage report (#80) --- .github/workflows/pr.yml | 46 ++++++++++++++++++++-------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 5e72510..09a22cb 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -80,31 +80,31 @@ jobs: - name: Test bevy-markdown run: cargo test -p bevy_cosmic_edit --lib - coverage: - runs-on: ubuntu-latest - env: - CARGO_TERM_COLOR: always - steps: - - name: Checkout - uses: actions/checkout@v3 + # coverage: + # runs-on: ubuntu-latest + # env: + # CARGO_TERM_COLOR: always + # steps: + # - name: Checkout + # uses: actions/checkout@v3 - - name: Install stable toolchain - uses: dtolnay/rust-toolchain@stable - with: - toolchain: stable + # - name: Install stable toolchain + # uses: dtolnay/rust-toolchain@stable + # with: + # toolchain: stable - - name: Cache - uses: Swatinem/rust-cache@v2 + # - name: Cache + # uses: Swatinem/rust-cache@v2 - - name: Install cargo-llvm-cov - uses: taiki-e/install-action@cargo-llvm-cov + # - name: Install cargo-llvm-cov + # uses: taiki-e/install-action@cargo-llvm-cov - - name: Generate code coverage - run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info + # - name: Generate code coverage + # run: cargo llvm-cov --all-features --workspace --lcov --output-path lcov.info - - name: Upload coverage to Codecov - uses: codecov/codecov-action@v3 - with: - token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos - files: lcov.info - fail_ci_if_error: true \ No newline at end of file + # - name: Upload coverage to Codecov + # uses: codecov/codecov-action@v3 + # with: + # token: ${{ secrets.CODECOV_TOKEN }} # not required for public repos + # files: lcov.info + # fail_ci_if_error: true \ No newline at end of file -- GitLab