6
0
mirror of https://github.com/grdl/git-get.git synced 2026-02-05 08:28:48 +00:00

Add a build badge to readme

This commit is contained in:
Grzegorz Dlugoszewski
2020-06-11 17:48:58 +02:00
parent 6c7eee26a0
commit 8c0046e6ac
3 changed files with 5 additions and 3 deletions

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

@@ -0,0 +1,18 @@
name: build
on:
- push
- pull_request
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 ./... -v