Skip to content

Merge pull request #231 from mgilbir/json-xml-nil-options #383

Merge pull request #231 from mgilbir/json-xml-nil-options

Merge pull request #231 from mgilbir/json-xml-nil-options #383

Workflow file for this run

name: Test
on:
push:
branches: [master, develop]
pull_request:
branches: [master, develop]
jobs:
test:
strategy:
matrix:
go: [1.16, 1.17, 1.18, 1.19]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
name: Go ${{ matrix.go }} ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go }}
- name: Test
run: go test -v ./...