diff --git a/.github/workflows/android-pull-request-ci.yml b/.github/workflows/android-pull-request-ci.yml new file mode 100644 index 0000000..9aacf95 --- /dev/null +++ b/.github/workflows/android-pull-request-ci.yml @@ -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"