Bump lifecycleViewModel from 2.8.6 to 2.8.7 (#343) #228
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: AndroidTest | |
on: | |
push : | |
branches : [ master ] | |
jobs: | |
test-feature: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4.1.0 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3.13.0 | |
with: | |
distribution: 'adopt' | |
java-version: '17' | |
- name: Grant execute permissions for gradlew | |
run: chmod +x ./gradlew | |
- name: Run Tests with Gradle | |
run: ./gradlew clean testDebugUnitTest |