6
0
mirror of https://github.com/grdl/git-get.git synced 2026-02-04 16:49:43 +00:00
Files
git-get/.github/workflows/test.yml
2020-06-11 17:21:01 +02:00

18 lines
303 B
YAML

name: test
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 ./...