Create go.yml

This commit is contained in:
Winni Neessen 2021-03-18 23:41:25 +01:00 committed by GitHub
parent 37e73c8c7a
commit 576e3116ab
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.15
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...