Create go.yml

This commit is contained in:
Mel Boyce 2020-02-29 22:18:25 +11:00 committed by GitHub
parent 19c5ce3f50
commit b7267badb9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,20 @@
name: go
on: [push]
jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: set up go
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: check out
uses: actions/checkout@v2
- name: vet and build
run: go vet ./... && go build