Skip to content

cgosqlite: update sqlite to 3.51.2 (#132) #129

cgosqlite: update sqlite to 3.51.2 (#132)

cgosqlite: update sqlite to 3.51.2 (#132) #129

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 ./...
- name: Race with sqlite_enable_api_armor
run: go test -v -race -tags sqlite_enable_api_armor
- name: No CGO build
run: CGO_ENABLED=0 go install ./...