From 0535ab2439909be5399d79f955a108307f7f0eea Mon Sep 17 00:00:00 2001 From: dignifiedquire Date: Mon, 2 Sep 2024 19:15:52 +0200 Subject: [PATCH] ci: remove broken coverage workflow --- .github/workflows/coverage.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/coverage.yml diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml deleted file mode 100644 index 045b669..0000000 --- a/.github/workflows/coverage.yml +++ /dev/null @@ -1,31 +0,0 @@ -on: - push: - branches: [master] - pull_request: - -name: Code Coverage - -jobs: - coverage: - name: Test Coverage - runs-on: ubuntu-latest - steps: - - - name: checkout source - uses: actions/checkout@v2 - - - name: Install nightly toolchain - uses: actions-rs/toolchain@v1 - with: - toolchain: nightly - profile: minimal - override: true - - - name: Run cargo-tarpaulin - uses: actions-rs/tarpaulin@v0.1 - with: - args: '--all-features' - - - name: Upload to codecov.io - uses: codecov/codecov-action@v2.1.0 -