diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2023-07-22 15:46:21 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2023-07-22 15:46:32 +0530 |
commit | eb55a32e8d3125fe98b144b3140eebc4c45fae35 (patch) | |
tree | 21072b89ae1fe34799884a76418e970889acbdc0 /.github/workflows/pull_request.yml | |
parent | 1581d2e00ce62d57f783d8a53a023d7d172691cc (diff) |
fix(ci): remove duplicate Lint jobs
Diffstat (limited to '.github/workflows/pull_request.yml')
-rw-r--r-- | .github/workflows/pull_request.yml | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 3d41e66d..8c103959 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -163,37 +163,6 @@ jobs: name: Build report path: build/reports/kotlin-build/ - lint-debug: - needs: [ "check-changed-files" ] - runs-on: ubuntu-latest - steps: - - name: Checkout repository - uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 - with: - fetch-depth: 0 - - - name: Set up JDK - uses: actions/setup-java@5ffc13f4174014e2d4d4572b3d74c3fa61aeb2c2 # v3.11.0 - with: - distribution: temurin - java-version: 18 - - - name: Copy CI gradle.properties - run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties - - - name: Run Lint on debug variants - uses: gradle/gradle-build-action@915a66c096a03101667f9df2e56c9efef558b165 # v2.6.1 - with: - arguments: lintDebug - gradle-home-cache-cleanup: true - - - name: Upload Kotlin build report - if: "${{ always() }}" - uses: actions/upload-artifact@0b7f8abb1508181956e8e162db84b466c27e18ce # v3.1.2 - with: - name: Build report - path: build/reports/kotlin-build/ - lint: needs: [ "check-changed-files" ] runs-on: ubuntu-latest |