Skip to content

Commit

Permalink
Merge pull request #160 from kolyshkin/go-disable-cache
Browse files Browse the repository at this point in the history
ci: checkout first, disable go caching
  • Loading branch information
kolyshkin authored Sep 27, 2024
2 parents 2a3520a + abc10f0 commit 46235e8
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,16 @@ jobs:
run:
shell: bash
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
# Disable caching as we don't have top-level go.sum needed for
# the cache key, and specifying multiple go.sums is not trivial
# (see https://github.com/moby/sys/pull/160 for details).
cache: false
- name: Set PACKAGES env
if: ${{ matrix.go-version == '1.18.x' }}
run: |
Expand Down

0 comments on commit 46235e8

Please sign in to comment.