feat: 도서 검색 실패시 대응(카카오톡 채널 문의 이동) #364
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Android CI | |
| env: | |
| GRADLE_OPTS: "-Dorg.gradle.jvmargs=-Xmx4g -Dorg.gradle.daemon=false" | |
| GRADLE_BUILD_ACTION_CACHE_DEBUG_ENABLED: true | |
| on: | |
| pull_request: | |
| concurrency: | |
| group: build-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| ci-build: | |
| runs-on: ubuntu-latest | |
| if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip-ci') }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'corretto' | |
| java-version: 21 | |
| - name: Setup Android SDK | |
| uses: android-actions/setup-android@v2 | |
| - name: Setup Gradle | |
| uses: gradle/gradle-build-action@v2 | |
| with: | |
| gradle-home-cache-cleanup: true | |
| - name: Generate local.properties | |
| run: echo '${{ secrets.LOCAL_PROPERTIES }}' | base64 -d > ./local.properties | |
| - name: Generate keystore.properties | |
| run: echo '${{ secrets.KEYSTORE_PROPERTIES }}' | base64 -d > ./keystore.properties | |
| - name: Generate google-services.json | |
| run: echo '${{ secrets.GOOGLE_SERVICES }}' | base64 -d > ./app/google-services.json | |
| - name: Code style checks | |
| run: | | |
| ./gradlew ktlintCheck detekt | |
| - name: Run build | |
| run: ./gradlew buildDebug --stacktrace | |
| stability_check: | |
| name: Compose Stability Check | |
| runs-on: ubuntu-latest | |
| if: ${{ !contains(github.event.pull_request.labels.*.name, 'skip-ci') }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup JDK 21 | |
| uses: actions/setup-java@v4 | |
| with: | |
| distribution: 'corretto' | |
| java-version: 21 | |
| - name: Setup Android SDK | |
| uses: android-actions/setup-android@v2 | |
| - name: Setup Gradle | |
| uses: gradle/gradle-build-action@v2 | |
| with: | |
| gradle-home-cache-cleanup: true | |
| - name: Generate local.properties | |
| run: echo '${{ secrets.LOCAL_PROPERTIES }}' | base64 -d > ./local.properties | |
| - name: Generate keystore.properties | |
| run: echo '${{ secrets.KEYSTORE_PROPERTIES }}' | base64 -d > ./keystore.properties | |
| - name: Generate google-services.json | |
| run: echo '${{ secrets.GOOGLE_SERVICES }}' | base64 -d > ./app/google-services.json | |
| - name: Compose Stability Check | |
| run: ./gradlew stabilityCheck |