Add workflow file for go tests

This commit is contained in:
Paul-Christian Volkmer 2023-02-11 19:04:23 +01:00
parent fc0ef1cc24
commit be386ece28

17
.github/workflows/go-test.yml vendored Normal file
View File

@ -0,0 +1,17 @@
name: Go test
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: '1.18'
- run: go test