FIxed deletion of voice, video, image, contact and location messages #4219
Workflow file for this run
This file contains 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 | |
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: | |
- uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@cd89f46ac9d01407894225f350157564c9c7cee2 # v3.12.0 | |
with: | |
distribution: "temurin" | |
java-version: 17 | |
- name: Check ${{ matrix.task }} | |
run: ./gradlew ${{ matrix.task }} |