From 734e16203e68fad44a048f3b7db8f4f0c4c5ddb5 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Fri, 27 Aug 2021 15:34:22 -0700 Subject: [PATCH] Attempt running tests under freebsd and openbsd vms --- .github/workflows/test.yaml | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 7738ad456..cdd661626 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -6,7 +6,7 @@ jobs: strategy: matrix: go-version: [1.15.x, 1.16.x] - os: [ubuntu-latest, macos-latest, freebsd-latest, openbsd-latest] + os: [ubuntu-latest, macos-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2 @@ -18,3 +18,25 @@ jobs: - name: Run tests run: go test ./... + + test-bsds: + runs-on: macos-10.15 + strategy: + matrix: + os: + - name: freebsd + version: 12.2 + - name: openbsd + version: 6.8 + + steps: + - uses: actions/checkout@v2 + + - name: Install go + uses: actions/setup-go@v2 + with: + go-version: "^1" + + - name: Run tests + run: go test ./... +