빈자리 알림 #601
Workflow file for this run
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: CI | |
on: | |
pull_request: | |
branches: | |
- 'develop' | |
push: | |
branches: | |
- 'develop' | |
jobs: | |
cancel-workflow: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.6.0 | |
with: | |
access_token: ${{ github.token }} | |
static-check: | |
runs-on: ubuntu-latest | |
needs: cancel-workflow | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Java | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 11 | |
distribution: 'adopt' | |
- name: Clean build | |
run: ./gradlew clean | |
- name: Run ktlintDebug | |
run: ./gradlew ktlintMainSourceSetCheck | |
- name: Upload ktlint report | |
uses: actions/upload-artifact@v2 | |
if: failure() | |
with: | |
name: ktlint-result | |
path: ./**/build/reports/ktlint/**/*.html | |
build: | |
runs-on: ubuntu-latest | |
needs: static-check | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup Java | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 11 | |
distribution: 'adopt' | |
- name: Clean build | |
run: ./gradlew clean | |
- name: Setup google-services.json (Staging) | |
run: | | |
mkdir -p ./app/src/staging | |
cat << EOF > ./app/src/staging/google-services.json | |
${{ secrets.google_services_json_staging }} | |
EOF | |
- name: Setup secrets.xml (Staging) | |
run: | | |
mkdir -p ./app/src/staging/res/values | |
cat << EOF > ./app/src/staging/res/values/secrets.xml | |
${{ secrets.secrets_xml_staging }} | |
EOF | |
- name: Build debug APK | |
run: ./gradlew assembleStagingDebug --stacktrace |