Skip to content

feat: exported MediaTypeProblemJSON and MediaTypeProblemXML #35

feat: exported MediaTypeProblemJSON and MediaTypeProblemXML

feat: exported MediaTypeProblemJSON and MediaTypeProblemXML #35

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Test
run: |
go test -v -coverprofile=profile.cov ./...
- name: Send Coverage
if: github.event_name == 'push'
uses: shogo82148/actions-goveralls@v1
continue-on-error: true
with:
path-to-profile: profile.cov