From 573e9186b211b6fc6165d497725a57a9917db1e4 Mon Sep 17 00:00:00 2001 From: John Barton Date: Wed, 11 Nov 2020 11:24:40 +1100 Subject: [PATCH] Matrix test across mac/win/linux --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6bef73..b31cdbf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -4,11 +4,12 @@ on: [push] jobs: build: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: matrix: go: [ '1.15', '1.14' ] - name: Go ${{ matrix.go }} Tests + os: [ ubuntu-latest, macOS-latest, windows-latest ] + name: ${{ matrix.os }} Go ${{ matrix.go }} Tests steps: - uses: actions/checkout@v2 - name: Setup go