Add Turkish localization and language selection to README #159
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Android CI | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: ["main"] | |
| pull_request: | |
| branches: ["main"] | |
| jobs: | |
| build_debug_apk: | |
| name: Build Debug APK | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v6 | |
| - name: Make gradlew executable | |
| run: chmod +x ./gradlew | |
| - name: Set Up JDK 22 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: '22' | |
| distribution: 'temurin' | |
| - name: Setup Gradle | |
| uses: gradle/actions/setup-gradle@v6 | |
| - name: Run Code Linting | |
| run: ./gradlew lint | |
| - name: Run Unit Tests | |
| run: ./gradlew test | |
| - name: Build APK (Debug) | |
| run: ./gradlew assembleDebug | |
| - name: Upload Lint & Test Reports | |
| uses: actions/upload-artifact@v7 | |
| if: always() | |
| with: | |
| name: reports | |
| path: | | |
| app/build/reports/lint-results*.html | |
| app/build/reports/tests/ | |
| retention-days: 7 | |
| - name: Upload Debug APK | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: app-debug | |
| path: app/build/outputs/apk/debug/ | |
| if-no-files-found: error | |
| retention-days: 14 |