We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4196fb2 + 4e7915f commit 3200519Copy full SHA for 3200519
1 file changed
.github/workflows/ci.yml
@@ -217,11 +217,16 @@ jobs:
217
strategy:
218
matrix:
219
os: [ubuntu-18.04, macos-10.15, windows-2019]
220
+ go-version: ['1.16.3']
221
+ include:
222
+ # Go 1.13.x is still used by Docker/Moby
223
+ - go-version: '1.13.x'
224
+ os: ubuntu-18.04
225
226
steps:
227
- uses: actions/setup-go@v2
228
with:
- go-version: '1.16.3'
229
+ go-version: ${{ matrix.go-version }}
230
231
- name: Set env
232
shell: bash
@@ -571,4 +576,4 @@ jobs:
571
576
name: TestResults cgroup2 ${{ matrix.runtime }} ${{matrix.runc}}
572
577
path: |
573
578
${{github.workspace}}/*-junit.xml
574
- ${{github.workspace}}/critestreport/*
579
+ ${{github.workspace}}/critestreport/*
0 commit comments