Added new missing translations for UA and RU and improved existing ones #266
This file contains 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: Build PR | |
on: | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 11 | |
distribution: "temurin" | |
cache: 'gradle' | |
- name: Build debug APK and run jvm tests | |
run: ./gradlew assembleDebug lintFullDebug testFullDebugUnitTest --stacktrace -DskipFormatKtlint | |
env: | |
PULL_REQUEST: 'true' | |
- name: Upload APK | |
uses: actions/upload-artifact@v3 | |
with: | |
name: app | |
path: app/build/outputs/apk/full/debug/*.apk |