Skip to content

Add the support of CREATE SEQUENCE syntax (#62) #103

Add the support of CREATE SEQUENCE syntax (#62)

Add the support of CREATE SEQUENCE syntax (#62) #103

Workflow file for this run

name: Go
on:
push:
branches: [main]
pull_request: {}
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.19
uses: actions/setup-go@v4
with:
go-version: 1.19
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Test
run: make ci