Add build and test workflow

This commit is contained in:
Josh Deprez 2021-11-03 15:33:55 +11:00 committed by GitHub
parent 1ff0694049
commit fd06be1766
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

25
.github/workflows/go.yml vendored Normal file
View file

@ -0,0 +1,25 @@
name: Go
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...