Finish up conversion #93
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: Test development build | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| workflow_dispatch: | |
| concurrency: | |
| group: test-dev | |
| cancel-in-progress: true | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6.0.2 | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v5.2.0 | |
| with: | |
| java-version: "21" | |
| distribution: "temurin" | |
| cache: gradle | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Run Unit Tests | |
| run: ./gradlew testDebugUnitTest --no-daemon | |
| continue-on-error: false | |
| - name: Run Lint | |
| run: ./gradlew lintRelease --no-daemon | |
| continue-on-error: false |