diff options
| author | Fuwn <[email protected]> | 2021-05-20 04:01:32 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2021-05-20 04:01:32 +0000 |
| commit | 514db7dc1ed6adce6a6e564917f8dc74e2d41618 (patch) | |
| tree | 67d8ae0e78e0452e88749efc0f97de8e411caacf /.github/workflows | |
| parent | refactor(whirl_prompt): move builtins to their new, respective modules (diff) | |
| download | whirl-514db7dc1ed6adce6a6e564917f8dc74e2d41618.tar.xz whirl-514db7dc1ed6adce6a6e564917f8dc74e2d41618.zip | |
revert(codecov): no more codecov once again
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/coverage.yml | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml deleted file mode 100644 index 5dd3c73..0000000 --- a/.github/workflows/coverage.yml +++ /dev/null @@ -1,48 +0,0 @@ -name: Coverage 🛌 - -on: - push: - paths: - - "whirl/**" - - "whirl_config/**" - - "whirl_prompt/**" - - "whirl_server/**" - pull_request: - paths: - - "whirl/**" - - "whirl_config/**" - - "whirl_prompt/**" - - "whirl_server/**" - -jobs: - coverage: - runs-on: ubuntu-20.04 - - steps: - - name: Checkout 🛒 - uses: actions/checkout@v2 - - - name: Toolchain 🧰 - uses: actions-rs/toolchain@v1 - with: - profile: minimal - toolchain: nightly-2021-02-20 - components: rustfmt, clippy - override: true - - - name: Tarpaulin ⛺ - uses: actions-rs/[email protected] - with: - version: '0.15.0' - args: '-- --test-threads 1' - - - name: Upload to Codecov ✈ - uses: codecov/[email protected] - with: - token: ${{ secrets.CODECOV_TOKEN }} - - - name: Archive Coverage Results 🗃 - uses: actions/upload-artifact@v1 - with: - name: code-coverage-report - path: cobertura.xml |