1
4
mirror of https://github.com/yunginnanet/HellPot synced 2024-06-24 23:08:03 +00:00

Create go.yml

This commit is contained in:
yunginnanet 2021-09-18 05:33:22 -07:00 committed by GitHub
parent a4359afac7
commit 64dec89685
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

25
.github/workflows/go.yml vendored Normal file

@ -0,0 +1,25 @@
name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
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 ./...