summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShupilkin Stanislav Yurevich <[email protected]>2019-10-24 10:33:43 +0300
committerShupilkin Stanislav Yurevich <[email protected]>2019-10-24 10:33:43 +0300
commitac34452b8e03261871652696235282bed39ba420 (patch)
tree59fc05ecf462746d828c4bb85c20e64626a09363
parent340166e0a25152dcda948071342b4b0ec5b6c24f (diff)
Update replace many curl download on one download curl to codecov-bash file
-rw-r--r--.github/workflows/blank.yml24
1 files changed, 13 insertions, 11 deletions
diff --git a/.github/workflows/blank.yml b/.github/workflows/blank.yml
index acbc672e..89d5a572 100644
--- a/.github/workflows/blank.yml
+++ b/.github/workflows/blank.yml
@@ -57,14 +57,16 @@ jobs:
go test ./service/health -race -v -coverprofile=health.txt -covermode=atomic
- name: Run code coverage
run: |
- bash <(curl -s https://codecov.io/bash) -f lib.txt
- bash <(curl -s https://codecov.io/bash) -f util.txt
- bash <(curl -s https://codecov.io/bash) -f service.txt
- bash <(curl -s https://codecov.io/bash) -f env.txt
- bash <(curl -s https://codecov.io/bash) -f rpc.txt
- bash <(curl -s https://codecov.io/bash) -f http.txt
- bash <(curl -s https://codecov.io/bash) -f static.txt
- bash <(curl -s https://codecov.io/bash) -f limit.txt
- bash <(curl -s https://codecov.io/bash) -f headers.txt
- bash <(curl -s https://codecov.io/bash) -f metrics.txt
- bash <(curl -s https://codecov.io/bash) -f health.txt
+ curl https://codecov.io/bash -o codecov-bash
+ chmod +x codecov-bash
+ ./codecov-bash -f lib.txt
+ ./codecov-bash -f util.txt
+ ./codecov-bash -f service.txt
+ ./codecov-bash -f env.txt
+ ./codecov-bash -f rpc.txt
+ ./codecov-bash -f http.txt
+ ./codecov-bash -f static.txt
+ ./codecov-bash -f limit.txt
+ ./codecov-bash -f headers.txt
+ ./codecov-bash -f metrics.txt
+ ./codecov-bash -f health.txt