diff --git a/.github/workflows/build_and_unit_test.yml b/.github/workflows/build_and_unit_test.yml index 7472860..ff2d51b 100644 --- a/.github/workflows/build_and_unit_test.yml +++ b/.github/workflows/build_and_unit_test.yml @@ -15,7 +15,7 @@ jobs: - uses: actions/checkout@v2 with: fetch-depth: 0 - path: go/pkg/mod/github.com/cloudberrydb/gpbackup + path: go/pkg/mod/github.com/apache/cloudberry-gpbackup* - name: Set up Go uses: actions/setup-go@v2 @@ -29,15 +29,15 @@ jobs: - name: Dependencies run: | - cd ${GOPATH}/pkg/mod/github.com/cloudberrydb/gpbackup + cd ${GOPATH}/pkg/mod/github.com/apache/cloudberry-gpbackup* make depend - name: Build run: | - cd ${GOPATH}/pkg/mod/github.com/cloudberrydb/gpbackup + cd ${GOPATH}/pkg/mod/github.com/apache/cloudberry-gpbackup* make build - name: Unit Test run: | - cd ${GOPATH}/pkg/mod/github.com/cloudberrydb/gpbackup + cd ${GOPATH}/pkg/mod/github.com/apache/cloudberry-gpbackup* make test