This is an automated email from the ASF dual-hosted git repository. ebarboni pushed a commit to branch workflowchanges in repository https://gitbox.apache.org/repos/asf/netbeans-mavenutils-nbm-maven-plugin.git
commit 4018ae9ba65f02c62245d88881c926436b4d7bae Author: Eric Barboni <[email protected]> AuthorDate: Mon Apr 20 14:43:46 2026 +0200 add jdk 26 + site --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6a04dd3..aa0d8ce 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - java: [ 11, 17, 21, 25 ] + java: [ 11, 17, 21, 25, 26 ] fail-fast: false steps: @@ -54,6 +54,9 @@ jobs: - name: Build & Test run: ./mvnw -B -ntp verify -P run-its + - name: Site + run: ./mvnw site + - name: Create Test Summary uses: mikepenz/action-junit-report@bccf2e31636835cf0874589931c4116687171386 # v6.4.0 if: always() --------------------------------------------------------------------- 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
