rohityadavcloud commented on code in PR #121: URL: https://github.com/apache/cloudstack-cloudmonkey/pull/121#discussion_r1085016419
########## .github/workflows/github-actions.yml: ########## @@ -0,0 +1,24 @@ +name: Github-Actions + +on: + push: + branches: [ "github-actions" ] + pull_request: + branches: [ "github-actions" ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v3 + + - name: Set up Go + uses: actions/setup-go@v3 + with: + go-version: 1.14.x + + - name: Run Script + run: make all Review Comment: Do we assume `make` is available or need to install any dependency? -- 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. To unsubscribe, e-mail: dev-unsubscr...@cloudstack.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org