fix: A bug where reactions added or removed were not reflected in the UI immediately (#264) #97
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 CI | |
| on: | |
| pull_request: | |
| branches: ["master", "develop"] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v5 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 0 | |
| token: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@v5 | |
| with: | |
| java-version: '25' | |
| distribution: 'temurin' | |
| cache: gradle | |
| - name: Make all scripts executable | |
| run: | | |
| chmod +x gradlew | |
| chmod +x presentation/src/main/cpp/build.sh | |
| - name: Build libvpx | |
| run: cd presentation/src/main/cpp && ./build.sh | |
| - name: Build Official Libre Debug APK | |
| run: ./gradlew assembleOfficialLibreDebug | |
| - name: Run Official Libre Debug Unit Tests | |
| run: ./gradlew testOfficialLibreDebugUnitTest | |
| - name: Build Telemt Libre Debug APK | |
| run: ./gradlew assembleTelemtLibreDebug | |
| - name: Run Telemt Libre Debug Unit Tests | |
| run: ./gradlew testTelemtLibreDebugUnitTest |