automated build exploration (#70)

This commit is contained in:
Michael Quigley 2022-11-02 14:14:30 -04:00
parent 05bbcb7750
commit 614638b8ba
No known key found for this signature in database
GPG Key ID: 9B60314A9DD20A62

20
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,20 @@
name: Go package
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: setup-go
uses: actions/setup-go@v3
with:
go-version: 1.19.3
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...