File tree 1 file changed +8
-8
lines changed
1 file changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -70,23 +70,23 @@ jobs:
70
70
runs-on : ubuntu-latest
71
71
steps :
72
72
- uses : actions/checkout@v2
73
- - run : sudo apt install python3-dev python3-setuptools
74
- - run : pip install -U wheel
75
- - run : pip install -U pytest setuptools
73
+ # - run: sudo apt install python3-dev python3-setuptools
74
+ # - run: pip install -U wheel
75
+ # - run: pip install -U pytest setuptools
76
76
# - uses: golangci/golangci-lint-action@v2
77
77
# with:
78
78
# version: v1.30.0
79
79
- run : make all
80
80
- name : Install goveralls
81
- env :
82
- GO111MODULE : off
83
81
run : |
84
- export GOPATH=$GITHUB_WORKSPACE
85
- go get github.com/mattn/goveralls
82
+ export GOBIN=$GITHUB_WORKSPACE/gobin
83
+ mkdir "$GOBIN"
84
+ go install github.com/mattn/[email protected]
86
85
- name : Send coverage
87
86
env :
88
87
COVERALLS_TOKEN : ${{ secrets.GITHUB_TOKEN }}
89
- run : ./bin/goveralls -coverprofile=coverage.out -service=github
88
+ run : |
89
+ ./gobin/goveralls -coverprofile=coverage.out -service=github
90
90
91
91
goreleaser :
92
92
name : Goreleaser
You can’t perform that action at this time.
0 commit comments