Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/scrutiny/commit/84f3327790161ff5f9c312cf4525b36f266ab6c6?style=split&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

adding codecov coverage support.

pull/228/head
Jason Kulatunga 3 years ago
parent ccbb9225c4
commit 84f3327790

@ -40,6 +40,12 @@ jobs:
go mod vendor go mod vendor
go test -race -coverprofile=coverage.txt -covermode=atomic -v -tags "static" $(go list ./... | grep -v /vendor/) go test -race -coverprofile=coverage.txt -covermode=atomic -v -tags "static" $(go list ./... | grep -v /vendor/)
- uses: codecov/codecov-action@v2
with:
files: ./coverage.txt
flags: unittests
fail_ci_if_error: true
verbose: true
- name: Build Binaries - name: Build Binaries
run: | run: |

Loading…
Cancel
Save