Migrate to Kotlin 2.1.20 (#454) #305
This file contains hidden or 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/[email protected] | |
| - name: Set up JDK 17 | |
| uses: actions/[email protected] | |
| 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 |