From b50f1674a884bef400fb5b0a5d5db7888113aaf5 Mon Sep 17 00:00:00 2001 From: Gabe Kangas Date: Fri, 27 Aug 2021 15:24:21 -0700 Subject: [PATCH] Add more test targets for GitHub tests --- .github/workflows/test.yaml | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 2a8964f29..b44191037 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -1,15 +1,13 @@ name: Tests -on: - push: - branches: - - develop - pull_request: - branches: develop - +on: [push, pull_request] jobs: test: - runs-on: ubuntu-latest + strategy: + matrix: + go-version: [1.15.x, 1.16.x] + os: [ubuntu-latest, macos-latest, windows-latest, freebsd-latest, openbsd-latest] + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2