Skip to content

Commit

Permalink
add dummy test
Browse files Browse the repository at this point in the history
Signed-off-by: Yoichi Kawasaki <yokawasa@gmail.com>
  • Loading branch information
yokawasa committed Feb 24, 2024
1 parent 65a4dfe commit d06c62b
Showing 1 changed file with 35 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -207,3 +207,38 @@ jobs:
echo "tilt: ${{steps.setup.outputs.tilt-path}}"
echo "skaffold: ${{steps.setup.outputs.skaffold-path}}"
echo "kubescore: ${{steps.setup.outputs.kube-score-path}}"
if [ ! -z ${kubectl} ]; then
${kubectl} version --client
fi
if [ ! -z ${kustomize} ]; then
${kustomize} version
fi
if [ ! -z ${helm} ]; then
${helm} version
fi
if [ ! -z ${kubeval} ]; then
${kubeval} --version
fi
if [ ! -z ${kubeconform} ]; then
${kubeconform} -v
fi
if [ ! -z ${conftest} ]; then
${conftest} --version
fi
if [ ! -z ${yq} ]; then
${yq} --version
fi
if [ ! -z ${rancher} ]; then
${rancher} --version
fi
if [ ! -z ${tilt} ]; then
${tilt} version
fi
if [ ! -z ${skaffold} ]; then
${skaffold} version
fi
if [ ! -z ${kubescore} ]; then
${kubescore} version
fi

0 comments on commit d06c62b

Please sign in to comment.