We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e898d00 commit 8e18bb8Copy full SHA for 8e18bb8
.github/workflows/go.yml
@@ -7,16 +7,19 @@ on:
7
branches: 'master'
8
9
jobs:
10
-
11
build:
+ strategy:
12
+ matrix:
13
+ go-version: [1.16.x]
14
+ os: [ubuntu-latest, macos-latest, windows-latest]
15
name: Build and test
- runs-on: ubuntu-latest
16
+ runs-on: ${{ matrix.os }}
17
steps:
18
19
- name: Set up Go 1.x
20
uses: actions/setup-go@v2
21
with:
- go-version: ^1.13
22
+ go-version: ${{ matrix.go-version }}
23
id: go
24
25
- name: Check out code into the Go module directory
0 commit comments