We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 262da29 commit db93fe4Copy full SHA for db93fe4
.github/workflows/ci.yml
@@ -39,11 +39,13 @@ jobs:
39
- name: Run Tests
40
run: |
41
nvim --version
42
- env
43
OS=$(echo $RUNNER_OS | tr '[:upper:]' '[:lower:]')
44
- echo $OS
45
- if [[ "$OS" = "macos" ]]; then OS=darwin; fi
46
+ if [[ "$OS" = "macos" ]]; then
+ OS=darwin
+ curl -sLo /tmp/kustomize.tar.gz https://github.com/kubernetes-sigs/kustomize/releases/download/kustomize/v5.3.0/kustomize_v5.3.0_darwin_amd64.tar.gz
+ tar -xC /tmp -f /tmp/kustomize.tar.gz
47
+ mv /tmp/kustomize /usr/local/bin/kustomize
48
+ fi
49
[ ! -d tests ] && exit 0
50
curl -sLo /tmp/kubeconform.tar.gz https://github.com/yannh/kubeconform/releases/download/v0.6.7/kubeconform-${OS}-amd64.tar.gz
51
tar -xC /tmp -f /tmp/kubeconform.tar.gz
0 commit comments