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 30
30
31
31
- name : Run golangci linting checks
32
32
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.
123
123
lint : lint-custom $(GOLANGCI_LINT ) # HELP Run golangci linter.
124
124
$(GOLANGCI_LINT ) run --build-tags $(GO_BUILD_TAGS ) $(GOLANGCI_LINT_ARGS )
125
125
126
+ lint-helm : $(HELM ) # HELP Run helm linter
127
+ helm lint helm/olmv1
128
+ helm lint helm/prometheus
129
+
126
130
.PHONY : custom-linter-build
127
131
custom-linter-build : # EXHELP Build custom linter
128
132
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 1
1
apiVersion : v2
2
2
name : olmv1
3
3
description : A Helm chart for OLMv1
4
-
4
+ icon : https://raw.githubusercontent.com/operator-framework/operator-framework.io/refs/heads/master/static/tile70x70.png
5
5
# A chart can be either an 'application' or a 'library' chart.
6
6
#
7
7
# Application charts are a collection of templates that can be packaged into versioned archives
Original file line number Diff line number Diff line change 1
1
apiVersion : v2
2
2
name : prometheus
3
3
description : 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
4
5
5
6
# A chart can be either an 'application' or a 'library' chart.
6
7
#
You can’t perform that action at this time.
0 commit comments