Skip to content

Commit 81b0fea

Browse files
fix(ci): update Docker curl, remove deprecated (#186)
* fix the lint error caused by the lower curl version * fix(ci): remove unused deprecated portions --------- Co-authored-by: TimmyExogenous <[email protected]>
1 parent 48e3799 commit 81b0fea

File tree

2 files changed

+0
-31
lines changed

2 files changed

+0
-31
lines changed

.github/workflows/proto.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,3 @@ jobs:
6262
against: "https://github.com/${{ github.repository }}.git#branch=${{ github.event.pull_request.base.ref }},subdir=proto"
6363
# do not fail the build if there are breaking changes
6464
continue-on-error: true
65-
- name: Make buf breaking changes outcome as txt file
66-
run: |
67-
mkdir -p ./result/
68-
echo "${{ steps.break-check.outcome }}" > ./result/outcome.txt
69-
echo "${{ github.event.pull_request.number }}" > ./result/pr_number.txt
70-
- uses: actions/upload-artifact@v2
71-
with:
72-
name: result
73-
path: ./result/

.github/workflows/test.yml

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -44,25 +44,3 @@ jobs:
4444
run: |
4545
make test-unit-cover
4646
if: env.GIT_DIFF
47-
- name: Check if test coverage is above threshold
48-
id: output-coverage
49-
uses: vladopajic/go-test-coverage@v2
50-
with:
51-
profile: cover.out
52-
local-prefix: github.com/ExocoreNetwork/exocore
53-
# TODO: increase this threshold with time to 80
54-
threshold-total: 0
55-
if: env.GIT_DIFF
56-
# even if coverage is low, do not exit.
57-
continue-on-error: true
58-
- name: Generate artifact for PR
59-
run: |
60-
mkdir -p ./result/
61-
echo "${{ steps.output-coverage.outputs.total-coverage }}" > ./result/coverage.txt
62-
echo "${{ github.event.pull_request.number }}" > ./result/pr_number.txt
63-
if: env.GIT_DIFF && github.event_name == 'pull_request'
64-
- uses: actions/upload-artifact@v2
65-
with:
66-
name: result
67-
path: ./result/
68-
if: env.GIT_DIFF && github.event_name == 'pull_request'

0 commit comments

Comments
 (0)