aahmed-se commented on a change in pull request #5064: Add Github workflow for gated checkin URL: https://github.com/apache/pulsar/pull/5064#discussion_r318791529
########## File path: .github/workflows/unit-ci.yaml ########## @@ -0,0 +1,20 @@ +name: CI +on: [pull_request] + +jobs: + + build-unit: + name: Unit tests + runs-on: ubuntu-latest + + steps: + - name: Checkout code + uses: actions/checkout@master + + - name: run unit tests + run: | + java -version + javac -version + export TEST_TIMEOUT_ENV_MILLIS=30000 + export TEST_RETRY_COUNT=3 + mvn install Review comment: fixed ---------------------------------------------------------------- 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
