From 7081094cb23a360aa7b34231348f37b31a5e0f75 Mon Sep 17 00:00:00 2001 From: adria0 Date: Sun, 10 May 2020 11:19:39 +0200 Subject: [PATCH] remove coverage --- .github/workflows/coverage.yaml | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 .github/workflows/coverage.yaml diff --git a/.github/workflows/coverage.yaml b/.github/workflows/coverage.yaml deleted file mode 100644 index 0588c4e..0000000 --- a/.github/workflows/coverage.yaml +++ /dev/null @@ -1,32 +0,0 @@ -on: [push] - -name: Code Coverage - -jobs: - lint: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v1 - - uses: actions-rs/toolchain@v1 - with: - toolchain: nightly - override: true - - uses: actions-rs/cargo@v1 - with: - command: test - args: --all-features --no-fail-fast - env: - CARGO_INCREMENTAL: '0' - RUSTFLAGS: '-Zprofile -Ccodegen-units=1 -Cinline-threshold=0 -Clink-dead-code -Coverflow-checks=off -Zno-landing-pads' - - name: Generate coverage report - id: coverage - uses: actions-rs/grcov@v0.1 - - name: list all /tmp files - run: ls -la /tmp - - name: Copy generated report - run: cp ${{ steps.coverage.outputs.report }} ${{ github.workspace }}/lcov.info - - name: Upload coverage report - uses: codecov/codecov-action@v1.0.2 - with: - token: ${{ secrets.CODECOV_TOKEN }} - file: ./lcov.info