Skip to content

Commit 99fcd7e

Browse files
committed
Just disable the coverage step, instead of disabling the test job
1 parent 05e2dfa commit 99fcd7e

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.circleci/config.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,12 @@ jobs:
2222
name: Run test
2323
command: |
2424
make test
25-
- run:
26-
name: Run coverage
27-
command: |
28-
make coverage
29-
bash <(curl -s https://codecov.io/bash)
25+
# TODO: enable coverage step after CircleCI resources are increased.
26+
# - run:
27+
# name: Run coverage
28+
# command: |
29+
# make coverage
30+
# bash <(curl -s https://codecov.io/bash)
3031
lint:
3132
<<: *golang
3233
steps:
@@ -44,4 +45,5 @@ workflows:
4445
version: 2
4546
build-workflow:
4647
jobs:
48+
- test
4749
- lint

0 commit comments

Comments
 (0)