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