Skip to content

Commit

Permalink
build: refactor GitHub Actions for Go build job
Browse files Browse the repository at this point in the history
- Add `go mod download` before `go build` in the Build job of go.yml.

Signed-off-by: Corentin Barreau <[email protected]>
  • Loading branch information
CorentinB committed Jun 8, 2023
1 parent e483800 commit 3aa7c66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
go-version: 1.20

- name: Build
run: go build -v ./...
run: go mod download && go build -v ./...

- name: Goroutine leak detector
continue-on-error: true
Expand Down

0 comments on commit 3aa7c66

Please sign in to comment.