Skip to content

add untagged fields for no validation #16

add untagged fields for no validation

add untagged fields for no validation #16

Workflow file for this run

name: Run coverage report
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: stable
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -coverprofile coverage.out $(go list ./... | grep -v validator/example)
- name: Update coverage report
uses: ncruces/go-coverage-report@v0
with:
coverage-file: coverage.out
report: true
chart: true
amend: true