diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5504e897..e1dbb8ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,13 +19,15 @@ jobs: with: java-version: '17' distribution: 'temurin' - cache: 'gradle' + + - name: Setup Gradle + uses: gradle/actions/setup-gradle@v3 - name: Grant execute permission for gradlew run: chmod +x ./gradlew - name: Build with Gradle - run: ./gradlew clean build + run: ./gradlew build -x test --no-daemon - name: Upload build artifact uses: actions/upload-artifact@v4 diff --git a/gradle.properties b/gradle.properties new file mode 100644 index 00000000..f8eba2fc --- /dev/null +++ b/gradle.properties @@ -0,0 +1,2 @@ +org.gradle.caching=true +org.gradle.daemon=true \ No newline at end of file