Skip to content

Commit

Permalink
add step to perform go mod before setting up the infra
Browse files Browse the repository at this point in the history
  • Loading branch information
Anmol1696 committed Sep 1, 2023
1 parent 24f4264 commit 5d5dd72
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/starship-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -41,7 +46,6 @@ jobs:
- name: Run Tests
run: |
cd tests/starship/
go mod tidy
make test
# Starship resource cleanup on cluster
Expand Down

0 comments on commit 5d5dd72

Please sign in to comment.