From: Matt Joiner Date: Sat, 27 May 2023 00:46:24 +0000 (+1000) Subject: Run Go CI test job on macos and windows X-Git-Url: http://www.git.stargrave.org/?p=btrtrc.git;a=commitdiff_plain;h=81e806a3d9dfc25199b6219896c59464bf2e917e Run Go CI test job on macos and windows --- 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