FCM Service에서 Coroutine 에러 핸들링 추가 #170
This file contains 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: develop-merge | |
on: | |
push: | |
branches: | |
- develop | |
jobs: | |
build: | |
name: Check Build Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git Checkout | |
uses: actions/checkout@v3 | |
- name: Setup For Build | |
uses: ./.github/actions/setup | |
with: | |
google-services: ${{ secrets.GOOGLE_SERVICES }} | |
keystore: ${{ secrets.KEYSTORE }} | |
keystore-properties: ${{ secrets.KEYSTORE_PROPERTY }} | |
- name: Build with Gradle | |
uses: gradle/gradle-build-action@v2 | |
timeout-minutes: 10 | |
with: | |
arguments: :app:assembleDebug |