Files

26 lines
379 B
YAML
Raw Permalink Normal View History

2020-03-17 11:17:19 +00:00
name: Go
on:
push:
2020-07-13 12:12:41 -07:00
branches: [ $default-branch ]
2020-03-17 11:17:19 +00:00
pull_request:
2020-07-13 12:12:41 -07:00
branches: [ $default-branch ]
2020-03-17 11:17:19 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
2021-01-05 11:47:18 -05:00
- uses: actions/checkout@v2
2020-03-17 11:17:19 +00:00
2021-01-05 11:47:18 -05:00
- name: Set up Go
2020-04-16 19:01:39 -04:00
uses: actions/setup-go@v2
2020-03-17 11:17:19 +00:00
with:
2021-08-18 19:28:16 -04:00
go-version: 1.17
2020-03-17 11:17:19 +00:00
- name: Build
2020-11-24 21:16:36 +01:00
run: go build -v ./...
2020-04-14 18:10:05 +07:00
- name: Test
2020-11-24 21:16:36 +01:00
run: go test -v ./...