File tree Expand file tree Collapse file tree 1 file changed +31
-0
lines changed
Expand file tree Collapse file tree 1 file changed +31
-0
lines changed Original file line number Diff line number Diff line change 6565 else
6666 exit 0
6767 fi
68+
69+ test_ct_action_noverify :
70+ runs-on : ubuntu-latest
71+
72+ name : Install chart-testing and test presence in path
73+ steps :
74+ - uses : actions/checkout@v4
75+ - name : Install chart-testing
76+ uses : ./
77+ with :
78+ verify_blob : ' false'
79+ - name : Check install!
80+ run : |
81+ ct version
82+ CT_VERSION_OUTPUT=$(ct version 2>&1 /dev/null)
83+ ACTUAL_VERSION=$(echo "$CT_VERSION_OUTPUT" | grep Version | rev | cut -d ' ' -f1 | rev)
84+ if [[ $ACTUAL_VERSION != 'v3.9.0' ]]; then
85+ echo 'should be v3.9.0'
86+ exit 1
87+ else
88+ exit 0
89+ fi
90+ shell : bash
91+ - name : Check root directory
92+ run : |
93+ if [[ $(git diff --stat) != '' ]]; then
94+ echo 'should be clean'
95+ exit 1
96+ else
97+ exit 0
98+ fi
You can’t perform that action at this time.
0 commit comments