Skip to content

Commit

Permalink
[Feat] CI 파일 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
YiBeomSeok committed Dec 21, 2023
1 parent d6312e5 commit 7783ea9
Showing 1 changed file with 59 additions and 0 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/android-pull-request-ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Android Pull Request CI

on:
pull_request:
branches: [ main ]

jobs:
verify:
runs-on: ubuntu-latest

permissions:
checks: write

# needed unless run with comment_mode: off
pull-requests: write

# only needed for private repository
contents: read

# only needed for private repository
issues: read

# required by download step to access artifacts API
actions: read

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 detekt
run: ./gradlew detekt

- name: Upload Event File
uses: actions/upload-artifact@v3
with:
name: Event File
path: ${{ github.event_path }}

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

- name: Upload Test Results
if: always()
uses: actions/upload-artifact@v3
with:
name: Test Results
path: "**/test-results/**/*.xml"

0 comments on commit 7783ea9

Please sign in to comment.