Skip to content

Migrate from spansql to memefish #146

Migrate from spansql to memefish

Migrate from spansql to memefish #146

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
test:
strategy:
matrix:
go-version:
- 1.21.x
- 1.22.x
platform:
- ubuntu-latest
- macos-latest
- windows-latest
runs-on: ${{ matrix.platform }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Get dependencies
run: go mod download
- name: Test
run: go test -v -race ./...