Skip to content

Update README.md in preparation for 2.7.0 - JSON marshaling/unmarshal… #127

Update README.md in preparation for 2.7.0 - JSON marshaling/unmarshal…

Update README.md in preparation for 2.7.0 - JSON marshaling/unmarshal… #127

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
test:
strategy:
matrix:
go-version: [1.20.1, 1.21.1]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v3
with:
go-version: ${{ matrix.go-version }}
stable: false
- name: Checkout code
uses: actions/checkout@v3
- name: Test
run: |
go test -v -race ./...
# go vet ./...
# go test -bench=.