Skip to content

Commit

Permalink
Fixed checkout to repo before executing actions/setup-go@v5 step to a…
Browse files Browse the repository at this point in the history
…void error that go.mod does not exist
  • Loading branch information
Kiyo510 committed Aug 12, 2024
1 parent 90131ce commit e91ee4d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
runs-on: ${{ matrix.os }}

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

- name: Test
run: go test ./... -v -cover

0 comments on commit e91ee4d

Please sign in to comment.