@@ -126,55 +126,12 @@ jobs:
126126 files : ${{ github.workspace }}/build/reports/kover/report.xml
127127 token : ${{ secrets.CODECOV_TOKEN }}
128128
129- # Run plugin structure verification along with IntelliJ Plugin Verifier
130- verify :
131- name : Verify plugin
132- needs : [ build ]
133- runs-on : ubuntu-latest
134- steps :
135-
136- # Free GitHub Actions Environment Disk Space
137- - name : Maximize Build Space
138- uses : jlumbroso/free-disk-space@v1.3.1
139- with :
140- tool-cache : false
141- large-packages : false
142-
143- # Check out the current repository
144- - name : Fetch Sources
145- uses : actions/checkout@v5
146-
147- # Set up the Java environment for the next steps
148- - name : Setup Java
149- uses : actions/setup-java@v5
150- with :
151- distribution : zulu
152- java-version : 21
153-
154- # Setup Gradle
155- - name : Setup Gradle
156- uses : gradle/actions/setup-gradle@v5
157- with :
158- cache-read-only : true
159-
160- # Run Verify Plugin task and IntelliJ Plugin Verifier tool
161- - name : Run Plugin Verification tasks
162- run : ./gradlew verifyPlugin
163-
164- # Collect Plugin Verifier Result
165- - name : Collect Plugin Verifier Result
166- if : ${{ always() }}
167- uses : actions/upload-artifact@v5
168- with :
169- name : pluginVerifier-result
170- path : ${{ github.workspace }}/build/reports/pluginVerifier
171-
172129 # Prepare a draft release for GitHub Releases page for the manual verification
173130 # If accepted and published, the release workflow would be triggered
174131 releaseDraft :
175132 name : Release draft
176133 if : github.event_name != 'pull_request'
177- needs : [ build, test, verify ]
134+ needs : [ build, test ]
178135 runs-on : ubuntu-latest
179136 permissions :
180137 contents : write
0 commit comments