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.
2 parents 2a3520a + abc10f0 commit 46235e8Copy full SHA for 46235e8
.github/workflows/test.yml
@@ -11,12 +11,16 @@ jobs:
11
run:
12
shell: bash
13
steps:
14
+ - name: Checkout code
15
+ uses: actions/checkout@v4
16
- name: Install Go
17
uses: actions/setup-go@v5
18
with:
19
go-version: ${{ matrix.go-version }}
- - name: Checkout code
- uses: actions/checkout@v4
20
+ # Disable caching as we don't have top-level go.sum needed for
21
+ # the cache key, and specifying multiple go.sums is not trivial
22
+ # (see https://github.com/moby/sys/pull/160 for details).
23
+ cache: false
24
- name: Set PACKAGES env
25
if: ${{ matrix.go-version == '1.18.x' }}
26
run: |
0 commit comments