We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9601553 commit 4089069Copy full SHA for 4089069
.circleci/config.yml
@@ -53,7 +53,11 @@ jobs:
53
54
- run:
55
name: Upload code coverage reports to Codecov
56
- command: if [ -d /tmp/artifacts/coverage ]; then codecov -Z -s /tmp/artifacts/coverage; fi
+ command: |
57
+ if [ -n "${CODECOV_TOKEN}" ] && [ -d /tmp/artifacts/coverage ] && ! echo "${CIRCLE_BRANCH}" | grep -q '^deps/'; then
58
+ codecov -Z -s /tmp/artifacts/coverage;
59
+ fi
60
+
61
62
workflows:
63
version: 2
0 commit comments