Files
gocast/.github/workflows/go.yml
Mayuresh Gaitonde 30303bb875 fix gh yml
2020-12-18 11:38:50 -08:00

32 lines
471 B
YAML

name: GoCast
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build and unit test
runs-on: ubuntu-latest
env:
CI: 1
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v2
with:
go-version: ^1.14
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
run: make
- name: Test
run: make test