Skip to content

no more unnecessary arrow key handling, when there is no hotkey assoc… #608

no more unnecessary arrow key handling, when there is no hotkey assoc…

no more unnecessary arrow key handling, when there is no hotkey assoc… #608

Workflow file for this run

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
# validation
- name: Validate Dictionaries
run: ./gradlew validateLanguages
- name: Lint
run: ./gradlew lint
- name: Build Release APK
run: ./gradlew build