Skip to content

Commit

Permalink
ci: update GitHub Action for Go version
Browse files Browse the repository at this point in the history
- Update go-version from `1.20` to `'1.20'` in github action
- Remove `go mod download` from build command in github action

Signed-off-by: Corentin Barreau <[email protected]>
  • Loading branch information
CorentinB committed Jun 8, 2023
1 parent 3aa7c66 commit 1196190
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.20
go-version: '1.20'

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

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

0 comments on commit 1196190

Please sign in to comment.