diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 13c40e7c..c3096ac1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,10 +36,12 @@ jobs: - name: Set up Go uses: actions/setup-go@v4 with: - go-version: '1.19' + go-version: "1.20" - name: Install Go dependencies - run: go install github.com/onsi/ginkgo/v2/ginkgo + run: | + go install github.com/onsi/ginkgo/v2/ginkgo + go install sigs.k8s.io/kwok/cmd/{kwok,kwokctl}@v0.3.0 - name: Download kind run: curl --insecure -Lo /usr/local/bin/kind https://kind.sigs.k8s.io/dl/v0.16.0/kind-linux-amd64 @@ -48,7 +50,7 @@ jobs: run: make local-up - name: Run tests - run: KUBECONFIG=$HOME/.kube/kubeadmiral/kubeadmiral.config EXTRA_GINKGO_FLAGS="--procs=3 -v" make e2e + run: KUBECONFIG=$HOME/.kube/kubeadmiral/kubeadmiral.config EXTRA_GINKGO_FLAGS="--procs=3 -v" EXTRA_E2E_FLAGS="--cluster-provider=kind" make e2e lint: runs-on: ubuntu-latest