File tree Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Expand file tree Collapse file tree 3 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -23,15 +23,17 @@ jobs:
2323 if : success()
2424 uses : actions/setup-go@v3.4.0
2525 with :
26- go-version : 1.17 .x
26+ go-version : 1.18 .x
2727 - name : Checkout code
2828 uses : actions/checkout@v3.1.0
2929 - name : Calc coverage
3030 run : |
3131 cd src
32+ go test -v ./... -covermode=count -coverprofile=coverage.out
3233 go get github.com/axw/gocov/gocov
3334 go get github.com/AlekSi/gocov-xml
34- go test -v ./... -covermode=count -coverprofile=coverage.out
35+ go install github.com/axw/gocov/gocov
36+ go install github.com/AlekSi/gocov-xml
3537 gocov convert coverage.out | gocov-xml > coverage.xml
3638 - name : Codecov Reports
3739 uses : codecov/codecov-action@v3.1.0
Original file line number Diff line number Diff line change @@ -11,9 +11,10 @@ selected branch (in variable REPO_BRANCH) and can be pulled new version on defin
1111
1212## RELEASE NOTES: v0.0.3-alpha
1313
14- | Feature | Description |
15- | ---------| -------------------------------|
16- | Done | Add support to proxy redirect |
14+ | Feature | Description |
15+ | ---------| ---------------------------------------------------|
16+ | Done | Add support to proxy redirect with HTTPS backends |
17+ | FIX | Bump golang.org/x/text from 0.3.7 to 0.3.8 |
1718
1819
1920
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ require (
2626 golang.org/x/crypto v0.0.0-20220214200702-86341886e292 // indirect
2727 golang.org/x/net v0.0.0-20220127200216-cd36cc0744dd // indirect
2828 golang.org/x/sys v0.1.0 // indirect
29+ golang.org/x/text v0.3.8 // indirect
2930 gopkg.in/warnings.v0 v0.1.2 // indirect
3031 gopkg.in/yaml.v2 v2.4.0 // indirect
3132 gopkg.in/yaml.v3 v3.0.1 // indirect
You can’t perform that action at this time.
0 commit comments