Translations update from Hosted Weblate #261
Workflow file for this run
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: Android Lint | |
| on: | |
| push: | |
| branches: [] | |
| pull_request: | |
| branches: [] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Install ninja-build | |
| run: sudo apt-get install -y ninja-build | |
| - name: Clone repository | |
| uses: actions/checkout@v4 | |
| - name: Clone submodules | |
| run: git submodule update --init --recursive --remote | |
| - name: Set up JDK 17 | |
| uses: actions/setup-java@v4 | |
| with: | |
| java-version: '17' | |
| distribution: 'temurin' | |
| cache: gradle | |
| - name: Grant execute permission for gradlew | |
| run: chmod +x gradlew | |
| - name: Check formatting with spotless | |
| run: ./gradlew spotlessCheck | |
| - name: Test musikr with Gradle | |
| run: ./gradlew musikr:testDebug |