Skip to content

Add omitempty to extra fields #20

Add omitempty to extra fields

Add omitempty to extra fields #20

Workflow file for this run

name: unit-tests
on:
pull_request:
push:
branches: [main]
jobs:
ci:
name: "run unit tests"
strategy:
fail-fast: true
matrix:
os: ["ubuntu-latest", "windows-latest", "macOS-latest"]
go: ['1.22', '1.23']
runs-on: ${{ matrix.os }}
steps:
- name: "checkout"
uses: actions/checkout@v4
- name: "fetch unshallow"
run: git fetch --prune --unshallow
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: "test"
run: "go test ./..."