[Fix] 오프라인 진입 제어 + 로그인 프로세스 수정 #754
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: "[CI] verify debug build test" | |
| on: | |
| pull_request: | |
| types: [ opened, synchronize ] | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| jobs: | |
| build_test: | |
| environment: Debug | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| gradle_command: | |
| - :app:assembleDebug | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup Development Environment | |
| uses: ./.github/actions/setup-development-environment | |
| with: | |
| google-services: ${{ secrets.GOOGLE_SERVICES }} | |
| test-mode: debug | |
| debug-properties: ${{ secrets.DEBUG_PROPERTIES }} | |
| - name: Setup Signed Key Environment | |
| uses: ./.github/actions/setup-key-environment | |
| with: | |
| key-properties: ${{ secrets.KEY_PROPERTIES }} | |
| key-file: ${{ secrets.SIGNED_KEY }} | |
| - name: build test | |
| run: ./gradlew ${{ matrix.gradle_command }} |