6
0
mirror of https://github.com/grdl/git-get.git synced 2026-02-04 20:54:41 +00:00
Files
git-get/.github/workflows/build.yml
Grzegorz Dlugoszewski 8c0046e6ac Add a build badge to readme
2020-06-11 17:48:58 +02:00

18 lines
307 B
YAML

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