Skip to content

chore: ci 추가

chore: ci 추가 #9

name: Android Pull Request CI
on:
pull_request:
branches: [ main ]
# paths:
# - 'app/'
#defaults:
# run:
# working-directory: ./android
jobs:
unit_test:
runs-on: ubuntu-latest
steps:
- name: Checkout the code
uses: actions/checkout@v3
- name: Gradle cache
uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- 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: Lint Check
# run: ./gradlew ktlintCheck

Check failure on line 45 in .github/workflows/android-pull-request-ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/android-pull-request-ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 45
- name: Run unit tests and publish results
env:
# DEBUG_KEYSTORE: ${{ secrets.DEBUG_KEYSTORE }}
# KEYSTORE_PROPERTIES: ${{ secrets.KEYSTORE_PROPERTIES }}
LOCAL_PROPERTIES: ${{ secrets.LOCAL_PROPERTIES }}
run: |
# echo "$DEBUG_KEYSTORE" | base64 -d > debug.keystore
# echo "$KEYSTORE_PROPERTIES" > keystore.properties
echo "$LOCAL_PROPERTIES" > local.properties
# ./gradlew test
./gradlew debugUnitTest --stacktrace
- name: Publish Test Results
if: always()
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: "**/test-results/**/*.xml"