Skip to content

Strict hseq selector assuming T and *T as different types #32

Strict hseq selector assuming T and *T as different types

Strict hseq selector assuming T and *T as different types #32

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@v2
with:
go-version: "1.20"
- uses: actions/checkout@v2
- 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