Create go.yml

This commit is contained in:
kayos 2022-08-29 04:35:38 -07:00 committed by GitHub
parent bfa467ba14
commit 5f0af8fb9e
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: Vibe Check
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: prep
uses: actions/setup-go@v3
with:
go-version: 1.18
- name: test
run: go test -v ./...