Create go.yml

This commit is contained in:
kayos 2022-07-29 00:13:31 -07:00 committed by kayos@tcp.direct
parent 7a0638b99f
commit 78b145da88
Signed by: kayos
GPG Key ID: 4B841471B4BEE979

18
.github/workflows/go.yml vendored Normal file
View File

@ -0,0 +1,18 @@
name: Go
on:
push:
branches: [ "master", "development" ]
pull_request:
branches: [ "master" ]
jobs:
vet:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: vet
run: go vet ./...