Skip to content

Implement Context and ColumnType interface (#15) #43

Implement Context and ColumnType interface (#15)

Implement Context and ColumnType interface (#15) #43

Workflow file for this run

name: OSX
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
name: Build
runs-on: macos-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go 1.x
uses: actions/setup-go@v4
with:
go-version: '1.20'
cache: false
- name: Build
run: go build -v ./...
- name: Test
run: go test -v -test.short ./...