cstamas commented on code in PR #113:
URL:
https://github.com/apache/netbeans-mavenutils-nbm-maven-plugin/pull/113#discussion_r1383205417
##########
.github/workflows/ci.yml:
##########
@@ -0,0 +1,23 @@
+name: Verify
+
+on:
+ push:
+ branches:
+ - master
+ pull_request:
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ java: [ 8, 11, 17 ]
+ steps:
+ - uses: actions/checkout@v3
+ - name: "Set up JDK ${{ matrix.java }}"
+ uses: actions/setup-java@v3
+ with:
+ java-version: ${{ matrix.java }}
+ distribution: 'temurin'
+ - name: Build & Test
+ run: ./mvnw -B verify -P run-its
Review Comment:
I think, as I have no experience with this action, to leave it for
subsequent PR... make it work first, then beautify it next :smile:
--
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]
For further information about the NetBeans mailing lists, visit:
https://cwiki.apache.org/confluence/display/NETBEANS/Mailing+lists