use ResolveAllEdges when ResolveTotalCount is absent and no edges are… #223
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
on: [push] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.18 | |
id: go | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
lfs: true | |
- name: Build | |
run: | | |
go generate ./... | |
go build . | |
- name: Test | |
run: | | |
go test -v -race -coverprofile=coverage.txt -covermode=atomic -coverpkg=./... ./... | |
go vet | |
- name: Upload Coverage | |
uses: codecov/codecov-action@v1 |