Run android-tests on API 34 #1890
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: | |
paths-ignore: | |
- '**.md' | |
push: | |
paths-ignore: | |
- '**.md' | |
jobs: | |
Test: | |
runs-on: self-hosted | |
timeout-minutes: 30 | |
steps: | |
- name: Check out source code | |
uses: actions/checkout@v3 | |
- name: Build project | |
run: ./build.sh build | |
- name: Run Android tests | |
run: ./build.sh android-tests-parallel 34 | |
- name: Upload artifacts | |
if: always() | |
uses: actions/upload-artifact@v3 | |
with: | |
name: build | |
path: | | |
build/*log | |
uhabits-android/build/outputs | |