github workflows: add go build workflow

This commit is contained in:
Tero Marttila 2022-06-24 11:36:41 +03:00
parent ff4182b7a5
commit 31c8d113f3
1 changed files with 31 additions and 0 deletions

31
.github/workflows/build.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: Go build
on:
pull_request:
branches:
- 'master'
push:
branches:
- 'master'
jobs:
build-go:
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v3
with:
go-version: 1.15
- name: Go Get
run: go get -d -u
- name: Go Build
run: go build -v
- name: Go Test
run: go test -v