Skip to content

Commit a1639ce

Browse files
committed
test fixes
Signed-off-by: Ryan Swanson <ryan.swanson@loft.sh>
1 parent 02baf29 commit a1639ce

File tree

9 files changed

+264
-250
lines changed

9 files changed

+264
-250
lines changed

.github/workflows/e2e-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
matrix:
2626
kubernetes_version:
2727
- v1.27.3
28-
- v1.28.0
28+
- v1.34.0
2929
steps:
3030
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
3131
- name: Checkout repo

.github/workflows/unit-tests.yaml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,16 @@ jobs:
3434
- name: Check out code into the Go module directory
3535
uses: actions/checkout@v1
3636

37+
- name: Uninstall Helm 3.x
38+
run: |
39+
HELM_PATH=$(which helm)
40+
if [ -f "$HELM_PATH" ]; then
41+
sudo rm "$HELM_PATH"
42+
echo "Helm removed from $HELM_PATH"
43+
else
44+
echo "Helm binary not found in standard paths."
45+
fi
46+
3747
- name: Test
3848
run: ./hack/coverage.bash
3949

0 commit comments

Comments
 (0)