From c6ae1487fc0754d72cc96595109748879ef8c0bc Mon Sep 17 00:00:00 2001 From: watcharapong Date: Sat, 17 Feb 2024 15:49:01 +0700 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bf01281..8ecfcf9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,6 +15,8 @@ jobs: with: java-version: '17' distribution: 'zulu' + - name: Change wrapper permissions + run: chmod +x ./gradlew - name: Run Linter run: ./gradlew spotlessCheck unit-test: @@ -30,6 +32,8 @@ jobs: with: java-version: '17' distribution: 'zulu' + - name: Change wrapper permissions + run: chmod +x ./gradlew - name: Run Unit Tests run: ./gradlew test build: @@ -46,5 +50,7 @@ jobs: with: java-version: '17' distribution: 'zulu' + - name: Change wrapper permissions + run: chmod +x ./gradlew - name: Build Java run: ./gradlew build