This is an automated email from the ASF dual-hosted git repository. jleroux pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/ofbiz-framework.git
The following commit(s) were added to refs/heads/trunk by this push: new ccc769b Improved: Checkstyle in GH (OFBIZ-11304) ccc769b is described below commit ccc769bce75fbc6331d5329cfc9645836243f06b Author: Jacques Le Roux <jacques.le.r...@les7arts.com> AuthorDate: Wed Jun 17 15:01:20 2020 +0200 Improved: Checkstyle in GH (OFBIZ-11304) This workflow will check the java style with Gradle Adapted from: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle This is a test... --- .github/workflows/gradle.yml | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml new file mode 100644 index 0000000..3193a36 --- /dev/null +++ b/.github/workflows/gradle.yml @@ -0,0 +1,26 @@ +# This workflow will build a Java project with Gradle +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-gradle + +name: Java CI with Gradle + +on: + push: + branches: [ trunk ] + pull_request: + branches: [ trunk ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 1.8 + uses: actions/setup-java@v1 + with: + java-version: 1.8 + - name: Grant execute permission for gradlew + run: chmod +x gradlew + - name: Build with Gradle + run: ./gradlew check