feat: ユーザの操作に関するエラーをアプリ全体で処理できるようにした #487
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: Android Unit Test | |
on: | |
push: | |
branches: | |
- master | |
- develop | |
pull_request: | |
branches: | |
- master | |
- develop | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 45 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '17' | |
distribution: zulu | |
cache: gradle | |
- name: Generate secret.properties | |
env: | |
PUSH_TO_FCM_AUTH: ${{ secrets.PUSH_TO_FCM_AUTH }} | |
PUSH_TO_FCM_PUBLIC_KEY: ${{ secrets.PUSH_TO_FCM_PUBLIC_KEY }} | |
PUSH_TO_FCM_SERVER_BASE_URL: ${{ secrets.PUSH_TO_FCM_SERVER_BASE_URL }} | |
run: | | |
echo "push_to_fcm.server_base_url=${PUSH_TO_FCM_SERVER_BASE_URL}" >> ./secret.properties | |
echo "push_to_fcm.public_key=${PUSH_TO_FCM_PUBLIC_KEY}" >> ./secret.properties | |
echo "push_to_fcm.auth=${PUSH_TO_FCM_AUTH}" >> ./secret.properties | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Run unit-test | |
run: ./gradlew lint testDebug --continue | |
- name: Build with Gradle | |
run: ./gradlew assembleRelease | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: outputs | |
path: app/build/outputs/ |