Use Material Design 3 For File Details Sharing Process Fragment #4737
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, spotlessKotlinCheck ] | |
steps: | |
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@0ab4596768b603586c0de567f2430c30f5b0d2b0 # v3 | |
with: | |
distribution: "temurin" | |
java-version: 17 | |
- name: Check ${{ matrix.task }} | |
run: ./gradlew ${{ matrix.task }} |