Skip to content

Merge pull request #279 from jackcipher/jack/20231006_lags-by-topic #4

Merge pull request #279 from jackcipher/jack/20231006_lags-by-topic

Merge pull request #279 from jackcipher/jack/20231006_lags-by-topic #4

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.16
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
run: go build -v -ldflags "-s -w -X main.version=$GITHUB_REF -X main.commit=${GITHUB_SHA::8}" ./cmd/kaf
- name: Test
run: go test -v ./...