forked from kubeflow/kubeflow
-
Notifications
You must be signed in to change notification settings - Fork 35
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 #345 from jiridanek/jd_static_checks
RHOAIENG-8554: Add static-checks GitHub action for go code
- Loading branch information
Showing
3 changed files
with
181 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,91 @@ | ||
--- | ||
name: Code static analysis | ||
"on": | ||
push: | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
permissions: | ||
contents: read | ||
pull-requests: read | ||
|
||
jobs: | ||
golangci: | ||
name: golangci-lint | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
component: | ||
- components/notebook-controller | ||
- components/odh-notebook-controller | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions/setup-go@v5 | ||
with: | ||
check-latest: true | ||
go-version-file: ${{ matrix.component }}/go.mod | ||
cache-dependency-path: ${{ matrix.component }}/go.sum | ||
|
||
- name: golangci-lint | ||
if: "${{ !cancelled() }}" | ||
uses: golangci/golangci-lint-action@v6 | ||
with: | ||
args: --timeout=5m | ||
version: v1.59.1 | ||
only-new-issues: true | ||
working-directory: ${{ matrix.component }} | ||
|
||
# additional checks not part of golangci-lint | ||
|
||
# https://github.com/golangci/golangci-lint/issues/4123 | ||
- name: go mod verify | ||
if: "${{ !cancelled() }}" | ||
run: go mod verify | ||
working-directory: ${{ matrix.component }} | ||
|
||
# https://github.com/golang/go/issues/27005 | ||
- name: go mod tidy -diff | ||
if: "${{ !cancelled() }}" | ||
run: | | ||
set -x | ||
go mod tidy | ||
# if the above changed any files, report the differences and fail the step | ||
if [[ $(git ls-files . -d -m -o --exclude-standard --full-name -v | wc -l) -gt 0 ]]; then | ||
echo "There are changes:" | ||
git diff | ||
exit 1 | ||
fi | ||
working-directory: ${{ matrix.component }} | ||
|
||
govulncheck: | ||
name: govulncheck | ||
runs-on: ubuntu-latest | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
component: | ||
- components/notebook-controller | ||
- components/odh-notebook-controller | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
# latest govulncheck works with the latest stable go version | ||
- uses: actions/setup-go@v5 | ||
with: | ||
go-version: stable | ||
cache-dependency-path: ${{ matrix.component }}/go.sum | ||
|
||
# https://go.googlesource.com/vuln | ||
- name: govulncheck | ||
if: "${{ !cancelled() }}" | ||
run: | | ||
go install golang.org/x/vuln/cmd/govulncheck@latest | ||
go mod tidy | ||
$(go env GOPATH)/bin/govulncheck ./... | ||
working-directory: ${{ matrix.component }} |
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,45 @@ | ||
# https://github.com/golangci/golangci-lint | ||
|
||
# Newer Kubebuilder adds this as a default | ||
# https://github.com/kubernetes-sigs/kubebuilder/issues/1887 | ||
|
||
run: | ||
timeout: 5m | ||
allow-parallel-runners: true | ||
|
||
issues: | ||
# don't skip warning about doc comments | ||
# don't exclude the default set of lint | ||
exclude-use-default: false | ||
# restore some of the defaults | ||
# (fill in the rest as needed) | ||
exclude-rules: | ||
- path: "api/*" | ||
linters: | ||
- lll | ||
- path: "internal/*" | ||
linters: | ||
- dupl | ||
- lll | ||
linters: | ||
disable-all: true | ||
enable: | ||
- dupl | ||
- errcheck | ||
- exportloopref | ||
- goconst | ||
- gocyclo | ||
- gofmt | ||
- goimports | ||
- gosimple | ||
- govet | ||
- ineffassign | ||
- lll | ||
- misspell | ||
- nakedret | ||
- prealloc | ||
- staticcheck | ||
- typecheck | ||
- unconvert | ||
- unparam | ||
- unused |
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,45 @@ | ||
# https://github.com/golangci/golangci-lint | ||
|
||
# Newer Kubebuilder adds this as a default | ||
# https://github.com/kubernetes-sigs/kubebuilder/issues/1887 | ||
|
||
run: | ||
timeout: 5m | ||
allow-parallel-runners: true | ||
|
||
issues: | ||
# don't skip warning about doc comments | ||
# don't exclude the default set of lint | ||
exclude-use-default: false | ||
# restore some of the defaults | ||
# (fill in the rest as needed) | ||
exclude-rules: | ||
- path: "api/*" | ||
linters: | ||
- lll | ||
- path: "internal/*" | ||
linters: | ||
- dupl | ||
- lll | ||
linters: | ||
disable-all: true | ||
enable: | ||
- dupl | ||
- errcheck | ||
- exportloopref | ||
- goconst | ||
- gocyclo | ||
- gofmt | ||
- goimports | ||
- gosimple | ||
- govet | ||
- ineffassign | ||
- lll | ||
- misspell | ||
- nakedret | ||
- prealloc | ||
- staticcheck | ||
- typecheck | ||
- unconvert | ||
- unparam | ||
- unused |