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: UI-Test | |
on: | |
pull_request: | |
branches: | |
- 'master' | |
push: | |
branches: | |
- 'master' | |
jobs: | |
UItest: | |
runs-on: macos-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v2 | |
- 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: run tests | |
uses: reactivecircus/android-emulator-runner@v2 #boots up emulator and perform UI tests | |
with: | |
api-level: 29 | |
script: ./gradlew connectedCheck |