Skip to content

Commit

Permalink
Merge branch 'develop' into Feat/#3
Browse files Browse the repository at this point in the history
  • Loading branch information
SeongHoonC committed May 14, 2024
2 parents a7dda50 + 7afecc3 commit 92b2b53
Show file tree
Hide file tree
Showing 3 changed files with 46 additions and 0 deletions.
File renamed without changes.
File renamed without changes.
46 changes: 46 additions & 0 deletions .github/workflow/ci_android.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Android CI

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

defaults:
run:
working-directory: Android

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- name: set up JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: zulu
cache: gradle

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Build with Gradle
run: ./gradlew build

- name: Run ktlint
run: ./gradlew ktlintCheck

- name: Run unit tests
run: ./gradlew testDebugUnitTest

- name: Build assemble release apk
run: ./gradlew assembleRelease

0 comments on commit 92b2b53

Please sign in to comment.