Commit 7b4d8cc 1 parent 94029b2 commit 7b4d8cc Copy full SHA for 7b4d8cc
File tree 2 files changed +10
-2
lines changed
2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 27
27
helm repo add hashicorp https://helm.releases.hashicorp.com
28
28
helm repo update
29
29
30
+ # Python is required because `ct lint` runs Yamale (https://github.com/23andMe/Yamale) and
31
+ # yamllint (https://github.com/adrienverge/yamllint) which require Python
30
32
- uses : actions/setup-python@v5
31
33
with :
32
34
python-version : " 3.x"
46
48
- name : Run chart-testing (lint)
47
49
if : steps.list-changed.outputs.changed == 'true'
48
50
run : |
49
- ct lint --target-branch ${{ github.event.repository.default_branch }} --charts charts/magistrala
51
+ ct lint --config ct.yaml
50
52
51
53
- name : Create kind cluster
52
54
if : steps.list-changed.outputs.changed == 'true'
55
57
- name : Run chart-testing (install)
56
58
if : steps.list-changed.outputs.changed == 'true'
57
59
run : |
58
- ct install --target-branch ${{ github.event.repository.default_branch }}
60
+ ct install --config ct.yaml
Original file line number Diff line number Diff line change
1
+ # See https://github.com/helm/chart-testing#configuration
2
+ remote : origin
3
+ target-branch : master
4
+ chart-dirs :
5
+ - charts/magistrala
6
+ helm-extra-args : --timeout 600s
You can’t perform that action at this time.
0 commit comments