You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@fineract.apache.org by vo...@apache.org on 2020/05/08 16:07:32 UTC

[fineract] branch develop updated: add Gradle Wrapper Validation GitHub Action (FINERACT-946)

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

vorburger 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 bbadeb9  add Gradle Wrapper Validation GitHub Action (FINERACT-946)
bbadeb9 is described below

commit bbadeb95912b5717eed6b35633b17960bd74db65
Author: Michael Vorburger <mi...@vorburger.ch>
AuthorDate: Fri May 8 17:40:50 2020 +0200

    add Gradle Wrapper Validation GitHub Action (FINERACT-946)
    
    see https://github.com/marketplace/actions/gradle-wrapper-validation
---
 .github/workflows/gradle-wrapper-validation.yml | 10 ++++++++++
 1 file changed, 10 insertions(+)

diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml
new file mode 100644
index 0000000..405a2b3
--- /dev/null
+++ b/.github/workflows/gradle-wrapper-validation.yml
@@ -0,0 +1,10 @@
+name: "Validate Gradle Wrapper"
+on: [push, pull_request]
+
+jobs:
+  validation:
+    name: "Validation"
+    runs-on: ubuntu-latest
+    steps:
+      - uses: actions/checkout@v2
+      - uses: gradle/wrapper-validation-action@v1