sijie commented on a change in pull request #5064: Add Github workflow for gated checkin URL: https://github.com/apache/pulsar/pull/5064#discussion_r318769396
########## 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 Review comment: how can we specify the java and javac version? ---------------------------------------------------------------- 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
