Skip to content

Delete Thread in Realm if it's empty and we're trying to display it in ThreadsList #5971

Delete Thread in Realm if it's empty and we're trying to display it in ThreadsList

Delete Thread in Realm if it's empty and we're trying to display it in ThreadsList #5971

Workflow file for this run

name: Android CI
on:
pull_request:
concurrency:
group: ${{ github.head_ref }}
cancel-in-progress: true
jobs:
instrumentation-tests:
if: github.event.pull_request.draft == false
runs-on: [ self-hosted, Android ]
strategy:
matrix:
api-level: [ 34 ]
target: [ google_apis ]
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
- name: Checkout the code
uses: actions/[email protected]
with:
token: ${{ github.token }}
submodules: recursive
# Setup Gradle and run Build
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew build
# Run tests
- name: Run Unit tests
run: ./gradlew testDebugUnitTest --stacktrace