Skip to content

Commit 24fd58b

Browse files
committed
fix test
1 parent 61af11b commit 24fd58b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build_and_unit_test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616
with:
1717
fetch-depth: 0
18-
path: go/pkg/mod/github.com/apache/cloudberry-gpbackup
18+
path: go/src/github.com/apache/cloudberry-gpbackup
1919

2020
- name: Set up Go
2121
uses: actions/setup-go@v2
@@ -29,15 +29,15 @@ jobs:
2929
3030
- name: Dependencies
3131
run: |
32-
cd ${GOPATH}/pkg/mod/github.com/apache/cloudberry-gpbackup
32+
cd ${GOPATH}/src/github.com/apache/cloudberry-gpbackup
3333
make depend
3434
3535
- name: Build
3636
run: |
37-
cd ${GOPATH}/pkg/mod/github.com/apache/cloudberry-gpbackup
37+
cd ${GOPATH}/src/github.com/apache/cloudberry-gpbackup
3838
make build
3939
4040
- name: Unit Test
4141
run: |
42-
cd ${GOPATH}/pkg/mod/github.com/apache/cloudberry-gpbackup
42+
cd ${GOPATH}/src/github.com/apache/cloudberry-gpbackup
4343
make test

0 commit comments

Comments
 (0)