diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-07-17 14:07:50 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2022-07-17 14:07:50 +0530 |
commit | 451c236c21849515699644aa268d79050afcac7a (patch) | |
tree | f95785755eb402abb71db6988824bac57572d379 /.github/workflows/pull_request.yml | |
parent | 831304a7bc5dd803ff0fce84663d04a40133484f (diff) |
github: add a detekt job
Diffstat (limited to '.github/workflows/pull_request.yml')
-rw-r--r-- | .github/workflows/pull_request.yml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index e8f06552..45224960 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -262,3 +262,44 @@ jobs: with: name: Build report path: build/reports/kotlin-build/ + + detekt: + runs-on: ubuntu-latest + steps: + - name: Checkout repository + uses: actions/checkout@v3.0.2 + with: + fetch-depth: 0 + + - name: Check if relevant files have changed + uses: actions/github-script@v6.1.0 + id: service-changed + with: + result-encoding: string + script: | + const script = require('.github/check-changed-files.js') + return await script({github, context}) + + - name: Set up JDK + if: "${{ steps.service-changed.outputs.result == 'true' }}" + uses: actions/setup-java@v3.4.1 + with: + distribution: temurin + java-version: 17 + + - name: Copy CI gradle.properties + if: "${{ steps.service-changed.outputs.result == 'true' }}" + run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties + + - name: Assemble non-free release + if: "${{ steps.service-changed.outputs.result == 'true' }}" + uses: gradle/gradle-build-action@v2.2.1 + with: + arguments: detekt + + - name: Upload Kotlin build report + if: "${{ always() }}" + uses: actions/upload-artifact@v3.1.0 + with: + name: Build report + path: build/reports/kotlin-build/ |