mirror of
https://github.com/nextcloud/android.git
synced 2024-11-22 21:25:35 +03:00
ac809af68e
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
29 lines
849 B
YAML
29 lines
849 B
YAML
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 # v4.1.1
|
|
- name: Set up JDK 17
|
|
uses: actions/setup-java@5896cecc08fd8a1fbdfaf517e29b571164b031f7 # v4.2.0
|
|
with:
|
|
distribution: "temurin"
|
|
java-version: 17
|
|
- name: Check ${{ matrix.task }}
|
|
run: ./gradlew ${{ matrix.task }}
|