Skip to content

Commit

Permalink
CI: Fix warning about restore cache failure
Browse files Browse the repository at this point in the history
  • Loading branch information
dveeden committed May 7, 2024
1 parent 2bd4573 commit 71e0a12
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,12 @@ jobs:
- name: Prepare for Go
run: |
sudo apt-get install -y make gcc
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Checkout code
uses: actions/checkout@v4
- name: Run tests
run: |
# separate test to avoid RESET MASTER conflict
Expand Down Expand Up @@ -64,11 +64,11 @@ jobs:
- name: Prepare for Go
run: |
sudo apt-get install -y make gcc
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: "1.22"
- name: Checkout code
uses: actions/checkout@v4
- name: Build on ${{ matrix.os }}/${{ matrix.arch }}
run: GOARCH=${{ matrix.arch }} GOOS=${{ matrix.os }} go build ./...

0 comments on commit 71e0a12

Please sign in to comment.