Skip to content

Commit

Permalink
Sort failure levels and skipped failure level lexicographically
Browse files Browse the repository at this point in the history
  • Loading branch information
mkondratek committed Nov 4, 2024
1 parent 0a035ee commit a0ee32e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,11 @@ jobs:
ideaIC:2023.2
ideaIC:2024.2.4
failure-levels: |
OVERRIDE_ONLY_API_USAGES
INVALID_PLUGIN
MISSING_DEPENDENCIES
NON_EXTENDABLE_API_USAGES
OVERRIDE_ONLY_API_USAGES
PLUGIN_STRUCTURE_WARNINGS
MISSING_DEPENDENCIES
INVALID_PLUGIN
- name: Upload the verification reports
if: always()
uses: actions/upload-artifact@v4
Expand Down
7 changes: 4 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,12 @@ val skippedFailureLevels =
.COMPATIBILITY_PROBLEMS, // blocked by the hacks with the completion provider for the
// remote IDE
FailureLevel.DEPRECATED_API_USAGES,
FailureLevel.EXPERIMENTAL_API_USAGES,
FailureLevel.INTERNAL_API_USAGES,
FailureLevel.NOT_DYNAMIC,
FailureLevel
.SCHEDULED_FOR_REMOVAL_API_USAGES, // HttpConfigurable, migration to coroutines, others
FailureLevel.EXPERIMENTAL_API_USAGES,
FailureLevel.NOT_DYNAMIC)!!
.SCHEDULED_FOR_REMOVAL_API_USAGES // HttpConfigurable, migration to coroutines, others
)!!

plugins {
id("java")
Expand Down

0 comments on commit a0ee32e

Please sign in to comment.