From 9a9b1b2f594a5ad1fec0f5a3605a70219f2e758d Mon Sep 17 00:00:00 2001 From: Muhammad Wildan Aldiansyah Date: Thu, 30 Jul 2020 23:27:59 +0700 Subject: [PATCH] add github action for gridmenu --- .github/workflows/gradle.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/gradle.yml diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml new file mode 100644 index 0000000..ac6cb12 --- /dev/null +++ b/.github/workflows/gradle.yml @@ -0,0 +1,25 @@ +name: Gridmenu Action + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +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: Lint with gradlew + run: ./gradlew lintDebug -S --warning-mode all + - name: Test with gradlew + run: ./gradlew test --stacktrace