Skip to content

Add SEQUENCE support (CREATE/ALTER/DROP) #217

Add SEQUENCE support (CREATE/ALTER/DROP)

Add SEQUENCE support (CREATE/ALTER/DROP) #217

Workflow file for this run

name: Test
on:
- push
- pull_request
jobs:
test:
strategy:
matrix:
go-version:
- 1.24.x
- 1.25.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 ./...