This is an automated email from the ASF dual-hosted git repository.
yasith pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata.git
The following commit(s) were added to refs/heads/master by this push:
new 63dd6208d2 add github action to run mvn build on commits/PRs
63dd6208d2 is described below
commit 63dd6208d2fe020d0d2e037cf4e84fe53bfb3e6b
Author: yasithdev <[email protected]>
AuthorDate: Wed Jun 4 02:52:40 2025 +0900
add github action to run mvn build on commits/PRs
---
.github/workflows/maven-build.yml | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/.github/workflows/maven-build.yml
b/.github/workflows/maven-build.yml
new file mode 100644
index 0000000000..75b875ac2a
--- /dev/null
+++ b/.github/workflows/maven-build.yml
@@ -0,0 +1,23 @@
+name: Maven Build (PR to master)
+
+on:
+ pull_request:
+ branches:
+ - master
+ push:
+ branches:
+ - master
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout code
+ uses: actions/checkout@v4
+ - name: Set up JDK 17
+ uses: actions/setup-java@v4
+ with:
+ distribution: 'temurin'
+ java-version: '17'
+ - name: Build with Maven (skip tests)
+ run: mvn clean install -DskipTests
\ No newline at end of file