summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorClement Tsang <34804052+ClementTsang@users.noreply.github.com>2021-11-28 04:08:54 -0500
committerGitHub <noreply@github.com>2021-11-28 04:08:54 -0500
commit3a95a3d6d2a4f0d3b1457b5dbb2bdf003b879122 (patch)
treee1c05b49d8aca93fddc42307b5d80719f2acb7a1
parentc4caa87e0be25af8f68a07e871d40a017b1000ed (diff)
ci: add run type to codecov action (#618)
This seems to be needed if I add unit tests due to the repo being both a binary and a lib.
-rw-r--r--.github/workflows/codecov.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/codecov.yml b/.github/workflows/codecov.yml
index f7d5578f..9699ef0e 100644
--- a/.github/workflows/codecov.yml
+++ b/.github/workflows/codecov.yml
@@ -40,7 +40,7 @@ jobs:
- name: Generate code coverage
run: |
- cargo tarpaulin --verbose --all-features --workspace --timeout 120 --out Xml
+ cargo tarpaulin --verbose --all-features --workspace --run-types AllTargets --timeout 120 --out Xml
- name: Upload to codecov.io
uses: codecov/codecov-action@v2