From c98efc8c566c259d40463de059fb8493796eafff Mon Sep 17 00:00:00 2001 From: Nathan <196140351+pot@users.noreply.github.com> Date: Mon, 18 Aug 2025 15:04:12 +0000 Subject: [PATCH] ci: test build with Java 24 in workflow --- .github/workflows/build-all.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 .github/workflows/build-all.yml diff --git a/.github/workflows/build-all.yml b/.github/workflows/build-all.yml new file mode 100644 index 0000000..82ef2bb --- /dev/null +++ b/.github/workflows/build-all.yml @@ -0,0 +1,26 @@ +name: Build All Modules + +on: + push: + branches: [main] + pull_request: + branches: [main] + +jobs: + build: + runs-on: ubuntu-latest + strategy: + matrix: + module: + - ansi + - core + - examples + steps: + - uses: actions/checkout@v4 + - name: Set up JDK 24 + uses: actions/setup-java@v4 + with: + java-version: '24' + distribution: 'temurin' + - name: Build with Maven + run: mvn -B -f ${{ matrix.module }}/pom.xml clean verify