mirror of
https://github.com/grdl/git-get.git
synced 2026-02-04 15:39:46 +00:00
18 lines
307 B
YAML
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 |