From f4ac7f7bfab53b7805ef391b2e3aa8a2e4f7ca60 Mon Sep 17 00:00:00 2001 From: Thomas Pelletier Date: Thu, 25 Mar 2021 21:12:19 -0400 Subject: [PATCH] Multi OS testing --- .github/workflows/workflow.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/workflow.yml b/.github/workflows/workflow.yml index d5c25dd..2befb82 100644 --- a/.github/workflows/workflow.yml +++ b/.github/workflows/workflow.yml @@ -6,11 +6,12 @@ on: jobs: build: - runs-on: ubuntu-latest strategy: matrix: + os: [ 'ubuntu-latest', 'windows-latest', 'macos-latest'] go: [ '1.15', '1.16' ] - name: Test on ${{ matrix.go }} + runs-on: ${{ matrix.os }} + name: Test on ${{ matrix.os }} with Go ${{ matrix.go }} steps: - uses: actions/checkout@master - name: Setup go