Skip to content

Add getters to table.Column (#158) #316

Add getters to table.Column (#158)

Add getters to table.Column (#158) #316

Workflow file for this run

name: build
on:
push:
tags:
- v*
branches:
- main
pull_request:
jobs:
buildandtest:
name: Build and test
strategy:
matrix:
go-version: [~1.13, ^1]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Download Go modules
run: go mod download
- name: Build
run: go build -v ./table
- name: Test
run: go test -race ./table