Skip to content

Commit

Permalink
ci: Remove Qodona - it doesn't work atm.
Browse files Browse the repository at this point in the history
  • Loading branch information
Roboroads committed Apr 11, 2023
1 parent 8370c35 commit 8f40f73
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 23 deletions.
40 changes: 20 additions & 20 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -112,9 +112,9 @@ jobs:
name: pluginVerifier-result
path: ${{ github.workspace }}/build/reports/pluginVerifier

# Run Qodana inspections
- name: Qodana - Code Inspection
uses: JetBrains/[email protected]
# # Run Qodana inspections
# - name: Qodana - Code Inspection
# uses: JetBrains/[email protected]

# Prepare plugin archive content for creating artifact
- name: Prepare Plugin Artifact
Expand Down
1 change: 0 additions & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down

0 comments on commit 8f40f73

Please sign in to comment.