Skip to content

An isomorphism is a structure-preserving mapping between two structur… #49

An isomorphism is a structure-preserving mapping between two structur…

An isomorphism is a structure-preserving mapping between two structur… #49

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