You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by pt...@apache.org on 2021/11/04 06:32:59 UTC

[fineract] branch develop updated: FINERACT-1428: Introduce GitHub Actions as CI

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

ptuomola pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/fineract.git


The following commit(s) were added to refs/heads/develop by this push:
     new 4bcae92  FINERACT-1428: Introduce GitHub Actions as CI
4bcae92 is described below

commit 4bcae92a3dee6523b43008da34d11b89eef4a408
Author: Petri Tuomola <pt...@users.noreply.github.com>
AuthorDate: Thu Nov 4 14:32:52 2021 +0800

    FINERACT-1428: Introduce GitHub Actions as CI
---
 .github/workflows/build.yml | 19 +++++++++++++++++++
 1 file changed, 19 insertions(+)

diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
new file mode 100644
index 0000000..24ed810
--- /dev/null
+++ b/.github/workflows/build.yml
@@ -0,0 +1,19 @@
+name: Fineract CI
+
+on: [push]
+
+jobs:
+  build:
+    runs-on: ubuntu-latest
+
+    steps:
+      - uses: actions/checkout@v2
+      - name: Set up JDK 11
+        uses: actions/setup-java@v2
+        with:
+          java-version: '11'
+          distribution: 'zulu'
+      - name: Validate Gradle wrapper
+        uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b
+      - name: Build with Gradle
+        run: ./gradlew licenseMain licenseTest check build doc