rustyrazorblade commented on code in PR #59: URL: https://github.com/apache/cassandra-easy-stress/pull/59#discussion_r2511099910
########## .github/workflows/ci.yml: ########## @@ -0,0 +1,126 @@ +name: CI + +on: + push: + branches: + - main + pull_request: + branches: + - main + +jobs: + test: + runs-on: ubuntu-latest + timeout-minutes: 30 + + strategy: + matrix: + java: [17, 21] Review Comment: I'm planning on dropping Java 11 as a supported version soon after this is merged. I figured since we haven't had any CI on this project before this, it wouldn't add much value in having 11 tested for a couple weeks only to remove it. -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
