Create go.yml

This commit is contained in:
kayos 2022-07-09 11:46:29 -07:00 committed by GitHub
parent 37577cf7a4
commit 3e27744925
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

@ -0,0 +1,17 @@
name: go-vet
on:
push:
branches: [ "master", "dev" ]
pull_request:
branches: [ "master" ]
jobs:
build:
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 ./...