Skip to content

refactor(client): use m-lab/locate/v2 (#49) #106

refactor(client): use m-lab/locate/v2 (#49)

refactor(client): use m-lab/locate/v2 (#49) #106

Workflow file for this run

# Run tests and compute code coverage
name: coverage
on:
pull_request:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: "1.23"
- uses: actions/checkout@v4
- run: go test -race -v -coverprofile=dash.cov -coverpkg=./... ./...
- uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: dash.cov
parallel: true
finish:
needs: test
runs-on: ubuntu-latest
steps:
- uses: shogo82148/actions-goveralls@v1
with:
parallel-finished: true