diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 6eb2b338..a35f2131 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -84,23 +84,25 @@ jobs:
./gradlew listProductsReleases # prepare list of IDEs for Plugin Verifier
# Run tests
- #- name: Run Tests
- # run: ./gradlew check
+ - name: Run Tests
+ run: ./gradlew check
# Collect Tests Result of failed tests
- #- name: Collect Tests Result
- # if: ${{ failure() }}
- # uses: actions/upload-artifact@v4
- # with:
- # name: tests-result
- # path: ${{ github.workspace }}/build/reports/tests
+ - name: Collect Tests Result
+ if: ${{ failure() }}
+ uses: actions/upload-artifact@v4
+ 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/report.xml
- # fail_ci_if_error: true
+ - name: Upload Code Coverage Report
+ uses: codecov/codecov-action@v4
+ with:
+ files: ${{ github.workspace }}/build/reports/kover/report.xml
+ fail_ci_if_error: true
+ env:
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
# Cache Plugin Verifier IDEs
- name: Setup Plugin Verifier IDEs Cache
diff --git a/gradle.properties b/gradle.properties
index 57a4724a..82ad9732 100644
--- a/gradle.properties
+++ b/gradle.properties
@@ -16,7 +16,7 @@ platformVersion = 241-EAP-SNAPSHOT
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
-platformPlugins = python-ce
+platformPlugins = python-ce, org.toml.lang
# Gradle Releases -> https://github.com/gradle/gradle/releases
gradleVersion = 8.6.0
diff --git a/resources/META-INF/plugin.xml b/resources/META-INF/plugin.xml
index 9f96beca..8e6e7b12 100644
--- a/resources/META-INF/plugin.xml
+++ b/resources/META-INF/plugin.xml
@@ -5,7 +5,7 @@
com.intellij.modules.lang
com.intellij.modules.python
-
+ org.toml.lang