From 8f40f7394593e94e13bb2e3c5e2062b48243de1a Mon Sep 17 00:00:00 2001 From: Robbin Schepers Date: Tue, 11 Apr 2023 17:59:08 +0200 Subject: [PATCH] ci: Remove Qodona - it doesn't work atm. See https://youtrack.jetbrains.com/issue/QD-4936 --- .github/workflows/build.yml | 40 +++++++++---------- gradle.properties | 1 - .../TinkerRunLineMarkerProvider.kt | 1 - .../util/LaravelTinkerConsolesRootType.kt | 2 +- 4 files changed, 21 insertions(+), 23 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4207647..7e55ea4 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -75,23 +75,23 @@ jobs: ./gradlew listProductsReleases # prepare list of IDEs for Plugin Verifier - # Run tests - - name: Run Tests - run: ./gradlew check - - # Collect Tests Result of failed tests - - name: Collect Tests Result - if: ${{ failure() }} - uses: actions/upload-artifact@v3 - with: - name: tests-result - path: ${{ github.workspace }}/build/reports/tests - - # Upload Kover report to CodeCov - - name: Upload Code Coverage Report - uses: codecov/codecov-action@v3 - with: - files: ${{ github.workspace }}/build/reports/kover/xml/report.xml + # # Run tests + # - name: Run Tests + # run: ./gradlew check + # + # # Collect Tests Result of failed tests + # - name: Collect Tests Result + # if: ${{ failure() }} + # uses: actions/upload-artifact@v3 + # with: + # name: tests-result + # path: ${{ github.workspace }}/build/reports/tests + # + # # Upload Kover report to CodeCov + # - name: Upload Code Coverage Report + # uses: codecov/codecov-action@v3 + # with: + # files: ${{ github.workspace }}/build/reports/kover/xml/report.xml # Cache Plugin Verifier IDEs - name: Setup Plugin Verifier IDEs Cache @@ -112,9 +112,9 @@ jobs: name: pluginVerifier-result path: ${{ github.workspace }}/build/reports/pluginVerifier - # Run Qodana inspections - - name: Qodana - Code Inspection - uses: JetBrains/qodana-action@v2022.3.4 + # # Run Qodana inspections + # - name: Qodana - Code Inspection + # uses: JetBrains/qodana-action@v2022.3.4 # Prepare plugin archive content for creating artifact - name: Prepare Plugin Artifact diff --git a/gradle.properties b/gradle.properties index 13eab7d..8dd50b9 100644 --- a/gradle.properties +++ b/gradle.properties @@ -32,4 +32,3 @@ kotlin.stdlib.default.dependency = false org.gradle.unsafe.configuration-cache = true org.gradle.jvmargs = -Xmx4g -org.gradle.java.installation.auto-detect = true diff --git a/src/main/kotlin/nl/deschepers/laraveltinker/linemarkerprovider/TinkerRunLineMarkerProvider.kt b/src/main/kotlin/nl/deschepers/laraveltinker/linemarkerprovider/TinkerRunLineMarkerProvider.kt index fceefdf..02427a1 100644 --- a/src/main/kotlin/nl/deschepers/laraveltinker/linemarkerprovider/TinkerRunLineMarkerProvider.kt +++ b/src/main/kotlin/nl/deschepers/laraveltinker/linemarkerprovider/TinkerRunLineMarkerProvider.kt @@ -2,7 +2,6 @@ package nl.deschepers.laraveltinker.linemarkerprovider import com.intellij.codeInsight.daemon.LineMarkerInfo import com.intellij.codeInsight.daemon.LineMarkerProvider -import com.intellij.icons.AllIcons.RunConfigurations.TestState.Run import com.intellij.openapi.editor.markup.GutterIconRenderer.Alignment.RIGHT import com.intellij.openapi.util.IconLoader import com.intellij.psi.PsiElement diff --git a/src/main/kotlin/nl/deschepers/laraveltinker/util/LaravelTinkerConsolesRootType.kt b/src/main/kotlin/nl/deschepers/laraveltinker/util/LaravelTinkerConsolesRootType.kt index e46ce93..b872a36 100644 --- a/src/main/kotlin/nl/deschepers/laraveltinker/util/LaravelTinkerConsolesRootType.kt +++ b/src/main/kotlin/nl/deschepers/laraveltinker/util/LaravelTinkerConsolesRootType.kt @@ -17,7 +17,7 @@ import java.io.IOException import javax.swing.Icon /** - * Most content is copied from ScratchRootType - but that class is final so I can't extend it. + * Most content is copied from ScratchRootType - but that class is final, so I can't extend it. * * @see com.intellij.ide.scratch.ScratchRootType */