add build on macOS test

netlink is Linux-only, but adding this test ensures that netlink builds
without error on macOS, which helps catch missing build tags.
This commit is contained in:
Tom Payne 2022-01-25 18:48:36 +01:00 committed by Vish (Ishaya) Abrams
parent d6b03fdeb8
commit ab4cd23987
1 changed files with 18 additions and 0 deletions

View File

@ -24,3 +24,21 @@ jobs:
- name: Test
run: sudo -E env PATH=$PATH go test -v ./ ./nl
build-macos:
# netlink is Linux-only, but this ensures that netlink builds without error
# on macOS, which helps catch missing build tags.
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.17
- name: Build
run: go build ./...
- name: Test
run: go test ./...