Skip to content

Commit

Permalink
Update functional-test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
abhijeet-dhumal authored Jan 15, 2024
1 parent 8a00a4f commit 93f9940
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion .github/workflows/functional-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,14 @@ jobs:
export USE_EXISTING_CLUSTER=false
- name: Test
run: go test -v ./functional-tests
run: |
pwd
echo "KUBEBUILDER_ASSETS : $KUBEBUILDER_ASSETS"
echo "USE_EXISTING_CLUSTER : $USE_EXISTING_CLUSTER"
DIRECTORY="$HOME/.kube"
if [ -d "$DIRECTORY" ]; then
echo "$DIRECTORY does exist."
else:
echo "$DIRECTORY does not exist."
fi
go test -v ./functional-tests

0 comments on commit 93f9940

Please sign in to comment.