Skip to content

Enhance JSON type mismatch error handling #41

Enhance JSON type mismatch error handling

Enhance JSON type mismatch error handling #41

Workflow file for this run

name: Pull Request Pipeline
permissions:
contents: read
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
cache-dependency-path: go.sum
- name: Test
run: |
go test -v ./... -coverprofile=coverage.out
go tool cover -html=coverage.out -o coverage.html
- name: Coverage Report
run: |
go tool cover -func=coverage.out
- name: Upload Coverage Reports
uses: actions/upload-artifact@v4
with:
name: coverage-report
path: |
coverage.out
coverage.html