Skip to content

Omit empty fields when marshalling to xml #25

Omit empty fields when marshalling to xml

Omit empty fields when marshalling to xml #25

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Tests
on: [push, pull_request]
jobs:
test:
strategy:
matrix:
go-version: [1.15.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Test
run: go test ./...