Skip to content

Added functionality to implement help.KeyMap interface (#185) #375

Added functionality to implement help.KeyMap interface (#185)

Added functionality to implement help.KeyMap interface (#185) #375

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.18, ^1]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Download Go modules
run: go mod download
- name: Build
run: go build -v ./table
- name: Test
run: go test -race ./table