[stable-25.0.x] (fix): Adding google emoji picker to message input fragment #10740
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
| # SPDX-FileCopyrightText: 2021-2024 Nextcloud GmbH and Nextcloud contributors | |
| # SPDX-License-Identifier: MIT | |
| name: Check | |
| on: | |
| pull_request: | |
| branches: [ master, stable-* ] | |
| # Declare default permissions as read only. | |
| permissions: read-all | |
| concurrency: | |
| group: check-kotlin-${{ github.head_ref || github.run_id }} | |
| cancel-in-progress: true | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| task: [ detekt, ktlintCheck ] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| with: | |
| persist-credentials: false | |
| - name: Set up JDK 21 | |
| uses: actions/setup-java@dd06d9cba3e5552c54d9f8ea23572deb30010f7c # v6.0.0 | |
| with: | |
| distribution: "temurin" | |
| java-version: 21 | |
| - name: Check ${{ matrix.task }} | |
| run: ./gradlew ${{ matrix.task }} |