diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 9dfd1bb..e926b96 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -22,21 +22,14 @@ jobs: echo "org.gradle.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=1g -Dkotlin.daemon.jvm.options=-Xmx2g" >> gradle.properties echo "org.gradle.parallel=true" >> gradle.properties - - name: Run Lint - run: ./gradlew lint - + # 유닛 테스트 실행 - name: Run Unit Tests run: ./gradlew testDebugUnitTest + # 컴파일 체크 - name: Check Compilation run: ./gradlew compileDebugSources + # 디버그 APK 빌드 - name: Build Debug APK run: ./gradlew assembleDebug - - # v4 버전 사용 - - name: Upload APK - uses: actions/upload-artifact@v4 - with: - name: barrion-debug - path: app/build/outputs/apk/debug/app-debug.apk