diff --git a/.github/workflows/cd-pydgraph.yml b/.github/workflows/cd-pydgraph.yml index da7a90ca..6cf1cae5 100644 --- a/.github/workflows/cd-pydgraph.yml +++ b/.github/workflows/cd-pydgraph.yml @@ -29,7 +29,7 @@ jobs: make protogen git diff --exit-code -- . - name: Check code quality - run: make check + run: SKIP=no-commit-to-branch make check - name: Run tests run: make test - name: Set version diff --git a/scripts/local-test.sh b/scripts/local-test.sh index 2dc0e69a..358f89a4 100755 --- a/scripts/local-test.sh +++ b/scripts/local-test.sh @@ -27,8 +27,8 @@ function restartCluster() { DockerCompose up --detach --force-recreate # shellcheck disable=SC2312 alphaHttpPort=$(DockerCompose port alpha1 8080 | awk -F: '{print $2}') + # shellcheck disable=SC2312 alphaGrpcPort=$(DockerCompose port alpha1 9080 | awk -F: '{print $2}') - # Wait for HTTP health endpoint wait-for-healthy 127.0.0.1:"${alphaHttpPort}"/health }