Skip to content

jsonb: add package for JSONB parsing #16

jsonb: add package for JSONB parsing

jsonb: add package for JSONB parsing #16

Workflow file for this run

name: test-sqlite
on:
push:
branches: [ main ]
pull_request:
types: [opened, reopened, synchronize]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.22'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...
- name: Race
run: go test -v -race ./...