Merge pull request #119 from TechbeeAT/claude/weblate-readme-section-… #623
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: Unit tests | |
| on: push | |
| jobs: | |
| test: | |
| name: Tests without emulator | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| submodules: true | |
| - uses: actions/setup-java@v5 | |
| with: | |
| distribution: temurin | |
| java-version: 21 | |
| cache: gradle | |
| - name: Setup Gradle | |
| uses: gradle/actions/wrapper-validation@v6.3.0 | |
| - name: All tests and androidLint | |
| run: ./gradlew :shared:allTests :androidJournalsApp:lintDebug :androidNotesApp:lintDebug :androidTasksApp:lintDebug | |
| - name: Archive results | |
| uses: actions/upload-artifact@v7 | |
| with: | |
| name: test-results2 | |
| path: | | |
| app/build/outputs/lint* | |
| app/build/reports |