Allowing Space to insert words, cleanup on setSuggestions, remove using isThereText #686
Workflow file for this run
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 the Project | |
on: | |
pull_request: | |
branches: | |
- "**" | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
# setup | |
- name: Checkout project sources | |
uses: actions/checkout@v2 | |
- name: Setup Java | |
uses: actions/setup-java@v3 | |
with: | |
distribution: temurin | |
java-version: 17 | |
- name: Setup Gradle | |
uses: gradle/gradle-build-action@v2 | |
# validate and build | |
- name: Validate Dictionaries | |
run: ./gradlew validateLanguages | |
- name: Build Languages | |
run: ./gradlew copyLanguages calculateDictionarySizes | |
- name: Lint | |
run: ./gradlew lint # this actually runs mergeResources, so it must come after the dictionary tasks | |
- name: Build Release APK | |
run: ./gradlew build |