Feature/#79 가게 및 메뉴 입력 화면에서 뒤로 가기 시 설정 화면으로 이동하는 버그를 수정한다 #64
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
# This is a basic workflow to help you get started with Actions | |
name: Android Pull Request CI | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
# test: | |
# runs-on: ubuntu-latest | |
# | |
# steps: | |
# - name: Checkout the code | |
# uses: actions/checkout@v3 | |
# | |
# - name: set up JDK 17 | |
# uses: actions/setup-java@v3 | |
# with: | |
# distribution: 'corretto' | |
# java-version: '17' | |
# | |
# - name: set up Android SDK | |
# uses: android-actions/setup-android@v2 | |
# | |
# - name: Grant execute permission for gradlew | |
# run: chmod +x gradlew | |
# | |
# - name: Unit test | |
# run: ./gradlew testAll | |
# - name: Extract JacocoReport | |
# run: ./gradlew jacocoReport | |
# - name: log coverage on console | |
# run: ./gradlew jacocoTotalCoverage | |
verify: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v3 | |
- name: set up JDK 17 | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'corretto' | |
java-version: '17' | |
- name: set up Android SDK | |
uses: android-actions/setup-android@v2 | |
- name: Configure local.properties | |
run: | | |
echo SERVER_BASE_URL="${{ secrets.SERVER_BASE_URL }}" > local.properties | |
shell: bash | |
- name: Grant execute permission for gradlew | |
run: chmod +x gradlew | |
- name: Run ktlint | |
run: ./gradlew ktlintCheck | |
- name: Run detekt | |
run: ./gradlew detekt | |
# app-build: | |
# runs-on: ubuntu-latest | |
# | |
# steps: | |
# - name: Checkout the code | |
# uses: actions/checkout@v3 | |
# | |
# - name: set up JDK 17 | |
# uses: actions/setup-java@v3 | |
# with: | |
# distribution: 'corretto' | |
# java-version: '17' | |
# | |
# - name: set up Android SDK | |
# uses: android-actions/setup-android@v2 | |
# | |
# - name: Grant execute permission for gradlew | |
# run: chmod +x gradlew | |
# | |
# - name: Run build | |
# run: ./gradlew app:assembleDevRelease |