Project adaptation to work with external instrumentation runners #29
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: "Preintegration Checks" | |
on: | |
pull_request: | |
jobs: | |
tests: | |
runs-on: [ self-hosted-org, linux ] | |
container: | |
image: docker://docker.tuenti.io/android/novum_android:8 | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- name: "Check Android Project" | |
run: './gradlew clean check assemble' | |
- name: "Check Gradle Plugin Project" | |
run: './gradlew -p include-build clean check jar' |