From 98e9ffd09cd2b11a1e985b4b238363399f08f57e Mon Sep 17 00:00:00 2001 From: John Kerl Date: Mon, 29 Mar 2021 00:37:11 -0400 Subject: [PATCH] multi-platform go.yml test --- .github/workflows/go.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 58d2a78cc..e5baa3cf5 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -9,7 +9,11 @@ on: jobs: build: - runs-on: ubuntu-latest macos-11.0 windows-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [macos-latest, ubuntu-latest, windows-latest] + steps: - uses: actions/checkout@v2