diff --git a/.github/workflows/android-pull-request-ci.yml b/.github/workflows/android-pull-request-ci.yml new file mode 100644 index 00000000..bc6da2c7 --- /dev/null +++ b/.github/workflows/android-pull-request-ci.yml @@ -0,0 +1,29 @@ +name: Android Pull Request CI +on: + pull_request: + branches: [ develop ] + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Checkout the code + uses: actions/checkout@v3 + + - name: Setup JDK 17 + uses: actions/setup-java@v3 + with: + distribution: 'corretto' + java-version: '17' + + - name: Setup Android SDK + uses: android-actions/setup-android@v2 + + - name: Grant execute permission for gradlew + run: chmod +x gradlew + + - name: Create local.properties with base.url + run: echo "base.url=https://ci-placeholder.local" >> local.properties + + - name: Run ktlint + run: ./gradlew ktlintCheck \ No newline at end of file