6
0
mirror of https://github.com/grdl/git-get.git synced 2026-02-04 13:56:46 +00:00

Add github action for running unit tests

This commit is contained in:
Grzegorz Dlugoszewski
2020-06-11 17:18:51 +02:00
parent a08e80671c
commit fc53d0dda3

14
.github/workflows/test.yml vendored Normal file
View File

@@ -0,0 +1,14 @@
name: test
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.14
- name: Run go test
run: go test ./...