Test debug #2
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: Test debug | |
on: | |
workflow_dispatch: | |
jobs: | |
run_tests: | |
name: Testing debug variant | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/[email protected] | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@v4 | |
- name: Make gradlew executable | |
run: chmod +x ./gradlew | |
- name: Execute Gradle command - testDebugUnitTest | |
run: ./gradlew testDebugUnitTest |