From 3a95a3d6d2a4f0d3b1457b5dbb2bdf003b879122 Mon Sep 17 00:00:00 2001 From: Clement Tsang <34804052+ClementTsang@users.noreply.github.com> Date: Sun, 28 Nov 2021 04:08:54 -0500 Subject: [PATCH] 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. --- .github/workflows/codecov.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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