wolfstudy commented on issue #6104: [Issue 4175] [pulsar-function-go] Create integration tests for Go Functions for production-readiness URL: https://github.com/apache/pulsar/pull/6104#issuecomment-581712092 > CI - Go Functions Tests / cpp-tests (pull_request) > and > CI - Go Functions style check / Build (pull_request) > need to be adjusted to reference the correct path because I moved the pf module into ./core In fact, we just need to ensure the test case in the `pf` directory. Because in [ci-go-functions-style.yml](https://github.com/apache/pulsar/blob/master/.github/workflows/ci-go-functions-style.yaml), The path of the go style check is as follows: ``` - name: Build if: steps.docs.outputs.changed_only == 'no' run: | cd pulsar-function-go go build ./pf ``` So, when you modified the original path, will result in the following error: ``` can't load package: package ./pf: cannot find package "./pf" in: /home/runner/work/pulsar/pulsar/pulsar-function-go/pf ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
