File tree Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Expand file tree Collapse file tree 1 file changed +11
-10
lines changed Original file line number Diff line number Diff line change @@ -128,24 +128,25 @@ jobs:
128
128
with :
129
129
cache-cleanup : always
130
130
131
- # Set environment variables
132
- - name : Export Properties
133
- id : properties
134
- shell : bash
135
- run : |
136
- echo "pluginVerifierHomeDir=~/.pluginVerifier" >> $GITHUB_OUTPUT
137
-
138
131
- run : hatch run lint:style
139
132
if : always()
140
133
141
134
- run : hatch run lint:typing
142
135
if : always()
143
136
144
- - run : |
137
+ - name : Run Plugin Verification tasks
138
+ run : |
145
139
cd intellij-client
146
- gradle verifyPlugin --console=plain
140
+ ./gradlew verifyPlugin -Dplugin.verifier.home.dir=~/.pluginVerifier
141
+ REPORTS=$(cat ${{ github.workspace }}/build/reports/pluginVerifier/*/report.md | sed 's/^#/##/')
142
+ echo "$REPORTS" >> $GITHUB_STEP_SUMMARY
147
143
148
- if: always()
144
+ - name : Collect Plugin Verifier Result
145
+ if : ${{ always() }}
146
+ uses : actions/upload-artifact@v4
147
+ with :
148
+ name : pluginVerifier-result
149
+ path : ${{ github.workspace }}/build/reports/pluginVerifier
149
150
150
151
package :
151
152
needs : [test]
You can’t perform that action at this time.
0 commit comments