Skip to content

When adding a new column to a table, include a primary key if the field is either a primary key itself or has an auto-increment attribute #12

When adding a new column to a table, include a primary key if the field is either a primary key itself or has an auto-increment attribute

When adding a new column to a table, include a primary key if the field is either a primary key itself or has an auto-increment attribute #12

Workflow file for this run

name: tests
on:
push:
pull_request:
permissions:
contents: read
jobs:
run-tests:
strategy:
matrix:
go: ['1.19', '1.18', '1.17']
platform: [ubuntu-latest]
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/checkout@v3
# Run build of the application
- name: Run build
run: go build .
- name: Run tests
run: go test -race -count=1 -v ./...