diff --git a/.gitea/workflows/ci.yaml b/.gitea/workflows/ci.yaml index 0ec464e..f10cf41 100644 --- a/.gitea/workflows/ci.yaml +++ b/.gitea/workflows/ci.yaml @@ -13,18 +13,19 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Setup JDK + uses: actions/setup-java@v4 + with: + distribution: temurin + java-version: "17" + - run: java -version - run: chmod +x gradlew - run: ./gradlew clean - - run: ./gradlew ktlintCheck - - run: ./gradlew detekt - - run: ./gradlew test - - run: ./gradlew build - -# - run: ./gradlew assembleDebug \ No newline at end of file + - run: ./gradlew assembleDebug \ No newline at end of file