[BOOK-381] chore: CI Compose Stability Check job 추가 #300
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 17 | ||
| uses: actions/setup-java@v4 | ||
| with: | ||
| distribution: 'corretto' | ||
| java-version: 17 | ||
| - 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: macos-latest | ||
| needs: build | ||
| steps: | ||
| - name: Check out code | ||
| uses: actions/checkout@v5.0.0 | ||
| - name: Set up JDK | ||
| uses: actions/setup-java@v5.0.0 | ||
| with: | ||
| distribution: 'zulu' | ||
| java-version: 21 | ||
| - name: compose stability check | ||
| run: ./gradlew stabilityCheck | ||