-
Notifications
You must be signed in to change notification settings - Fork 46
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 #224 from InjectiveLabs/feat/update_dependencies_c…
…hain_v1_13 Feat/update dependencies chain v1 13
- Loading branch information
Showing
351 changed files
with
87,451 additions
and
20,669 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 |
---|---|---|
|
@@ -9,11 +9,13 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/setup-python@v4 | ||
- uses: actions/checkout@master | ||
with: | ||
fetch-depth: 2 | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: 1.19 | ||
go-version-file: "go.mod" | ||
check-latest: true | ||
- run: go install golang.org/x/tools/cmd/goimports@latest | ||
- run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s - -b $(go env GOPATH)/bin v1.49.0 | ||
- run: echo "PATH=$PATH:/home/runner/go/bin" >> $GITHUB_ENV | ||
- uses: actions/checkout@v3 | ||
- run: curl -sSfL https://raw.githubusercontent.com/golangci/golangci-lint/master/install.sh | sh -s -- -b $(go env GOPATH)/bin v1.59.0 | ||
- uses: pre-commit/[email protected] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{ | ||
"run": { | ||
"tests": false, | ||
}, | ||
"linters": { | ||
"fast": false, | ||
"enable": [ | ||
"errcheck", | ||
"errorlint", | ||
"gas", | ||
"gocritic", | ||
"gosimple", | ||
"govet", | ||
"ineffassign", | ||
"megacheck", | ||
"misspell", | ||
"nakedret", | ||
"prealloc", | ||
"revive", | ||
"staticcheck", | ||
"unconvert", | ||
"unparam", | ||
], | ||
"disable": [ | ||
"unused", | ||
] | ||
}, | ||
"linters-settings": { | ||
"revive": { | ||
"enableAllRules": true, | ||
"rules": [ | ||
{ | ||
"name": "var-naming", | ||
"arguments": [ | ||
["ID"] | ||
] | ||
} | ||
] | ||
}, | ||
"gocritic": { | ||
"enabled-tags": [ | ||
"diagnostic", | ||
"experimental", | ||
"opinionated", | ||
"performance", | ||
"style", | ||
], | ||
"disabled-checks": [ | ||
"hugeParam", | ||
] | ||
} | ||
}, | ||
} |
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
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.