Translations update from Weblate #107
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-Test | |
on: | |
pull_request: | |
branches: | |
- 'master' | |
push: | |
branches: | |
- 'master' | |
jobs: | |
build: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone Repo | |
uses: actions/checkout@v2 | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 1.8 | |
- name: Cache Gradle Caches | |
uses: actions/cache@v1 | |
with: | |
path: ~/.gradle/caches/ | |
key: cache-gradle | |
- name: Cache Gradle Wrapper | |
uses: actions/cache@v1 | |
with: | |
path: ~/.gradle/wrapper/ | |
key: cache-gradle-wrapper | |
- name: Make gradlew executable | |
run: chmod +x ./gradlew | |
- name: Build project | |
run: ./gradlew clean build | |
- name: Run Unit tests | |
run: ./gradlew test --stacktrace | |