From 5d5dd72d0da7fa1eaa144f2b7b3eb71879653a75 Mon Sep 17 00:00:00 2001 From: Anmol1696 Date: Fri, 1 Sep 2023 16:00:16 +0530 Subject: [PATCH] add step to perform go mod before setting up the infra --- .github/workflows/starship-e2e-tests.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/starship-e2e-tests.yml b/.github/workflows/starship-e2e-tests.yml index fa02b6b7..35dbf7ce 100644 --- a/.github/workflows/starship-e2e-tests.yml +++ b/.github/workflows/starship-e2e-tests.yml @@ -24,6 +24,11 @@ jobs: go-version: ^1.20 id: go + - name: Deps + run: | + cd tests/starship/ + go mod tidy + # Starship Infra setup # - Connects to k8s cluster with kubeconfig (digital ocean) # - Creates a new namespace based on the name (deleted in next step) @@ -41,7 +46,6 @@ jobs: - name: Run Tests run: | cd tests/starship/ - go mod tidy make test # Starship resource cleanup on cluster