Show MMS subject in tap to download message #206
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: Check licenses | |
| on: [pull_request, push] | |
| jobs: | |
| licenses: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: true | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@v5 | |
| with: | |
| distribution: 'temurin' | |
| java-version: 21 | |
| cache: gradle | |
| - name: Regenerate licenses | |
| run: ./gradlew :app:generateLicenses --no-daemon --rerun | |
| - name: Fail if assets/licenses.html is out of date | |
| run: | | |
| if ! git diff --exit-code -- assets/licenses.html; then | |
| echo "::error::assets/licenses.html is out of date. Run './gradlew :app:generateLicenses' and commit the result." | |
| exit 1 | |
| fi |