-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18 from SolaceDev/dev
Release v1.6.0
- Loading branch information
Showing
27 changed files
with
6,188 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,7 +46,15 @@ jobs: | |
check-latest: true | ||
- name: Check Go Version | ||
run: go version | ||
- name: run go tool staticcheck | ||
# use pinned version of staticcheck this need to match with the go version for compatibility | ||
# Compatibility with go version is listed in the release description of https://github.com/dominikh/go-tools/releases | ||
# need at least version v0.4.4 for go version 1.21 | ||
run: | | ||
go install honnef.co/go/tools/cmd/[email protected] | ||
staticcheck -checks=all ./... | ||
- name: Compiles | ||
if: ${{ success() }} | ||
run: go build ./... | ||
|
||
- name: Runs go fmt | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.