Add MessageBufferingConfig to allow custom back-pressure config for message.new events
#19433
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: Pull request CI checks | |
| on: [ pull_request ] | |
| concurrency: | |
| group: ${{ github.head_ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| base-android-ci: | |
| uses: GetStream/stream-build-conventions-android/.github/workflows/android-ci.yml@v0.10.0 | |
| secrets: inherit | |
| detekt: | |
| name: Detekt | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4.2.2 | |
| - uses: GetStream/stream-build-conventions-android/.github/actions/setup-gradle@v0.10.0 | |
| - name: Detekt | |
| run: ./gradlew detekt | |
| rubocop: | |
| name: Rubocop | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4.2.2 | |
| - uses: GetStream/android-ci-actions/actions/setup-ruby@main | |
| - run: bundle exec fastlane rubocop |