Skip to content

Commit

Permalink
Merge pull request #26 from junjange/chore/and_ci_setting
Browse files Browse the repository at this point in the history
안드로이드 CI 환경 구축
  • Loading branch information
junjange authored Jul 11, 2024
2 parents ea38db9 + 3eece33 commit ba8f7e0
Show file tree
Hide file tree
Showing 3 changed files with 60 additions and 38 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/android-pull-request-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
name: Android Pull Request CI

on:
push:
branches: [ develop ]
pull_request:
branches: [ develop ]
paths:
- 'android/**'

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: Run unit tests
env:
LOCAL_PROPERTIES: ${{ secrets.LOCAL_PROPERTIES }}
run: |
echo "$LOCAL_PROPERTIES" > local.properties
./gradlew testDebugUnitTest --stacktrace
- name: Publish Test Results
if: always()
uses: EnricoMi/publish-unit-test-result-action@v2
with:
files: "**/test-results/**/*.xml"
34 changes: 0 additions & 34 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions android/gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ paging = "3.3.0"
[libraries]
# test
junit = { group = "junit", name = "junit", version.ref = "junit" }
junit-jupiter = { group = "junit", name = "jupiter", version.ref = "junit-jupiter" }
assertj = { group = "assertj", name = "assertj-core", version.ref = "assertj-core" }
kotest = { group = "kotest", name = "kotest-runner-junit5", version.ref = "kotest-runner-junit5" }
mockk = { group = "mockk", name = "mockk", version.ref = "mockk" }
junit-jupiter = { group = "org.junit.jupiter", name = "junit-jupiter", version.ref = "junit-jupiter" }
assertj = { group = "org.assertj", name = "assertj-core", version.ref = "assertj-core" }
kotest = { group = "io.kotest", name = "kotest-runner-junit5", version.ref = "kotest-runner-junit5" }
mockk = { group = "io.mockk", name = "mockk", version.ref = "mockk" }
androidx-junit = { group = "androidx.test.ext", name = "junit", version.ref = "junitVersion" }
androidx-espresso-core = { group = "androidx.test.espresso", name = "espresso-core", version.ref = "espressoCore" }

Expand Down

0 comments on commit ba8f7e0

Please sign in to comment.