Create go.yml

This commit is contained in:
Joel Schmid 2021-06-05 19:14:10 +02:00 committed by GitHub
parent 4e3fe0ce0b
commit 1938c4afe4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

22
.github/workflows/go.yml vendored Normal file
View file

@ -0,0 +1,22 @@
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.16
- name: Build
run: go build -v ./...