aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2021-05-20 04:01:32 +0000
committerFuwn <[email protected]>2021-05-20 04:01:32 +0000
commit514db7dc1ed6adce6a6e564917f8dc74e2d41618 (patch)
tree67d8ae0e78e0452e88749efc0f97de8e411caacf
parentrefactor(whirl_prompt): move builtins to their new, respective modules (diff)
downloadwhirl-514db7dc1ed6adce6a6e564917f8dc74e2d41618.tar.xz
whirl-514db7dc1ed6adce6a6e564917f8dc74e2d41618.zip
revert(codecov): no more codecov once again
-rw-r--r--.github/workflows/coverage.yml48
-rw-r--r--codecov.yml42
2 files changed, 0 insertions, 90 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
diff --git a/codecov.yml b/codecov.yml
deleted file mode 100644
index bfd8bb7..0000000
--- a/codecov.yml
+++ /dev/null
@@ -1,42 +0,0 @@
-# Before making changes to this file, please verify it validity with the
-# following shell command;
-# `cat codecov.yml | curl --data-binary @- https://codecov.io/validate`.
-
-codecov:
- token: "secret:xGpGvas82nUNsQ5qjyZYJEjdBwsbX0E6m93vHgzlLSRfD1IVsVrlcQDYsb6ooJx4gEJcVN+UHpoHS6NOmLJF7LTiKEd7bdLgUNMkuKK78Rs="
- bot: "codecov-io"
- strict_yaml_branch: "yaml-config"
- max_report_age: 24
- disable_default_path_fixes: false
- require_ci_to_pass: true
- notify:
- after_n_builds: 2
- wait_for_ci: true
-
-coverage:
- range: 50..90
- round: nearest
- precision: 2
- status:
- project:
- default:
- target: auto
- threshold: 0%
- flags:
- - unit
- paths:
- - "src/**"
- if_ci_failed: error
- informational: false
- only_pulls: false
- patch: false
-
-github_checks:
- annotations: false
-
-comment:
- layout: "reach, diff, flags, files"
- behavior: default
- require_changes: false
- require_base: false
- require_head: true