Skip to content

Docs: More comments on ExampleBuilder_BodyJSON #365

Docs: More comments on ExampleBuilder_BodyJSON

Docs: More comments on ExampleBuilder_BodyJSON #365

Workflow file for this run

name: Go
on: [ push, pull_request ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.20'
cache: true
- name: Get dependencies
run: go mod download
- name: Test
run: go test -race -v -coverprofile=profile.cov ./...
- uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: profile.cov