Added GitHub Actions for tests

This commit is contained in:
darmiel 2021-03-26 13:30:37 +01:00
parent 48c3c540d6
commit c50c70f883

16
.github/workflows/test.yml vendored Normal file
View file

@ -0,0 +1,16 @@
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Install Go 1.16
uses: actions/setup-go@v2
with:
go-version: 1.16
- name: Checkout
uses: actions/checkout@v2
- name: Run tests
run: go test -v