ignore bgp test in ci

This commit is contained in:
Mayuresh Gaitonde
2020-12-18 11:36:18 -08:00
parent 6be4d69d02
commit 12dc52edc6
3 changed files with 42 additions and 11 deletions

31
.github/workflows/go.yml vendored Normal file
View File

@@ -0,0 +1,31 @@
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