Create go.yml

This commit is contained in:
yunginnanet 2021-09-29 02:57:02 -07:00 committed by GitHub
parent efecfe7999
commit 274199f780
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 ./...