.github: add testing workflow

This commit is contained in:
fyrchik 2021-10-07 13:45:49 +03:00 committed by Alex Vanin
parent cd005e54a4
commit 922c73bdac

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

@ -0,0 +1,20 @@
name: Go
on:
pull_request:
branches: [ master ]
jobs:
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Test
run: go test -v ./...