Skip to content

(fea) hseq field lookup (#48) #56

(fea) hseq field lookup (#48)

(fea) hseq field lookup (#48) #56

Workflow file for this run

##
## Unit Tests & Coverage
##
name: test
on:
pull_request:
types:
- opened
- synchronize
push:
branches:
- main
- /refs/heads/main
jobs:
unit:
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: "1.22"
- uses: actions/[email protected]
- name: go build
run: |
find . -name go.mod -execdir go build ./... \;
- name: go test
run: |
find . -name go.mod -execdir go test -coverprofile=profile.cov ./... \;
- uses: shogo82148/actions-goveralls@v1
continue-on-error: true
with:
path-to-profile: profile.cov