From 81e806a3d9dfc25199b6219896c59464bf2e917e Mon Sep 17 00:00:00 2001 From: Matt Joiner Date: Sat, 27 May 2023 10:46:24 +1000 Subject: [PATCH] Run Go CI test job on macos and windows --- .github/workflows/go.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 284b62b3..8a387906 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -6,10 +6,11 @@ jobs: test: timeout-minutes: 30 - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: matrix: go-version: [ '1.20' ] + os: [windows-latest, macos-latest, ubuntu-latest] fail-fast: false steps: - uses: actions/checkout@v2 -- 2.44.0