File tree Expand file tree Collapse file tree 4 files changed +18
-1
lines changed
Expand file tree Collapse file tree 4 files changed +18
-1
lines changed Original file line number Diff line number Diff line change 3030
3131 - name : Run golangci linting checks
3232 run : make lint
33+
34+ lint-helm :
35+ runs-on : ubuntu-latest
36+ steps :
37+ - uses : actions/checkout@v5
38+
39+ - uses : actions/setup-go@v5
40+ with :
41+ go-version-file : " go.mod"
42+
43+ - name : Run helm linting checks
44+ run : make lint-helm
Original file line number Diff line number Diff line change @@ -123,6 +123,10 @@ help-extended: #HELP Display extended help.
123123lint : lint-custom $(GOLANGCI_LINT ) # HELP Run golangci linter.
124124 $(GOLANGCI_LINT ) run --build-tags $(GO_BUILD_TAGS ) $(GOLANGCI_LINT_ARGS )
125125
126+ lint-helm : $(HELM ) # HELP Run helm linter
127+ helm lint helm/olmv1
128+ helm lint helm/prometheus
129+
126130.PHONY : custom-linter-build
127131custom-linter-build : # EXHELP Build custom linter
128132 go build -tags $(GO_BUILD_TAGS ) -o ./bin/custom-linter ./hack/ci/custom-linters/cmd
Original file line number Diff line number Diff line change 11apiVersion : v2
22name : olmv1
33description : A Helm chart for OLMv1
4-
4+ icon : https://raw.githubusercontent.com/operator-framework/operator-framework.io/refs/heads/master/static/tile70x70.png
55# A chart can be either an 'application' or a 'library' chart.
66#
77# Application charts are a collection of templates that can be packaged into versioned archives
Original file line number Diff line number Diff line change 11apiVersion : v2
22name : prometheus
33description : A Helm chart of Prometheus resources for OLMv1
4+ icon : https://raw.githubusercontent.com/operator-framework/operator-framework.io/refs/heads/master/static/tile70x70.png
45
56# A chart can be either an 'application' or a 'library' chart.
67#
You can’t perform that action at this time.
0 commit comments