1
0
Fork 0
mirror of https://github.com/vbatts/sl-feeds.git synced 2024-11-22 07:45:39 +00:00
sl-feeds/.github/workflows/go.yml
Vincent Batts 04205bb845
Create go.yml
Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
2021-02-16 14:32:41 -05:00

25 lines
371 B
YAML

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.15
- name: Build
run: go build -v ./cmd/sl-feeds/
- name: Test
run: go test -v ./...