Skip to content

(fix) do not panic if MUST condition fail #14

(fix) do not panic if MUST condition fail

(fix) do not panic if MUST condition fail #14

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.18.1
- uses: actions/checkout@v2
- name: go build
run: |
go build ./...
- name: go test
run: |
go test -v -coverprofile=profile.cov $(go list ./... | grep -v /examples/)
- uses: shogo82148/actions-goveralls@v1
continue-on-error: true
with:
path-to-profile: profile.cov