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 b3f99f3 commit 0d38df9Copy full SHA for 0d38df9
.github/workflows/build.yaml
@@ -11,16 +11,15 @@ jobs:
11
env:
12
GO111MODULE: on
13
14
- # Intentionally use 18.04 instead of "latest" to
15
- # make this build reproducible.
16
- runs-on: ubuntu-18.04
17
-
18
strategy:
19
matrix:
20
- go: ['1.13', '1.14']
+ os: ['ubuntu-18.04', 'ubuntu-20.04']
+ go: ['1.13', '1.14', '1.15', '1.16']
21
# Build all variants regardless of failures
22
fail-fast: false
23
- name: Go ${{ matrix.go }}
+
+ name: ${{ matrix.os }} / Go ${{ matrix.go }}
+ runs-on: ${{ matrix.os }}
24
25
steps:
26
- uses: actions/checkout@v2
0 commit comments