Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 3 additions & 10 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Loading