Skip to content

Extension to schema.org ontology #4

Extension to schema.org ontology

Extension to schema.org ontology #4

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: |
# 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