This is an automated email from the ASF dual-hosted git repository.

coheigea pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ws-xmlschema.git


The following commit(s) were added to refs/heads/master by this push:
     new 9ebca8b0 Adding pull request builder
9ebca8b0 is described below

commit 9ebca8b037181b703344193ac9b564c56537fff1
Author: Colm O hEigeartaigh <[email protected]>
AuthorDate: Tue Oct 21 05:56:19 2025 +0100

    Adding pull request builder
---
 .github/workflows/pull-request-build.yaml | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/.github/workflows/pull-request-build.yaml 
b/.github/workflows/pull-request-build.yaml
new file mode 100644
index 00000000..5258ecdc
--- /dev/null
+++ b/.github/workflows/pull-request-build.yaml
@@ -0,0 +1,26 @@
+name: "Build and Test"
+
+on:
+  pull_request:
+    branches: ['master']
+
+permissions:
+  contents: read
+
+jobs:
+  build-java-8:
+    runs-on: ubuntu-latest
+    permissions:
+      contents: read  
+      pull-requests: read
+    timeout-minutes: 130
+    steps:
+      - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # 
v5.0.0
+      - name: Set up JDK 8
+        uses: actions/setup-java@dded0888837ed1f317902acf8a20df0ad188d165 # 
v5.0.0
+        with:
+          java-version: '8'
+          distribution: 'temurin'
+          cache: maven
+      - name: Build with Apache Maven
+        run: mvn -U clean install -Djava.awt.headless=true -fae -B

Reply via email to