Skip to content

Commit

Permalink
Fix GitHub actions path
Browse files Browse the repository at this point in the history
Signed-off-by: Andrey Velichkevich <[email protected]>
  • Loading branch information
andreyvelich committed Mar 3, 2025
1 parent a37a5e1 commit b20e562
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/test-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ jobs:
e2e-test:
name: E2E Test
runs-on: ubuntu-latest
env:
GOPATH: ${{ github.workspace }}/go
defaults:
run:
working-directory: ${{ env.GOPATH }}/src/github.com/kubeflow/trainer

strategy:
fail-fast: false
Expand All @@ -17,6 +22,8 @@ jobs:
steps:
- name: Check out code
uses: actions/checkout@v4
with:
path: ${{ env.GOPATH }}/src/github.com/kubeflow/trainer

- name: Setup Go
uses: actions/setup-go@v5
Expand All @@ -30,7 +37,7 @@ jobs:

- name: Install dependencies
run: |
echo "Install kind"
echo "Install Kind"
go install sigs.k8s.io/[email protected]
# pip install -U './sdk'
Expand Down

0 comments on commit b20e562

Please sign in to comment.