File tree Expand file tree Collapse file tree 1 file changed +1
-44
lines changed Expand file tree Collapse file tree 1 file changed +1
-44
lines changed Original file line number Diff line number Diff line change 7979 name : ${{ steps.artifact.outputs.filename }}
8080 path : ./build/distributions/content/*/*
8181
82- # Run tests and upload a code coverage report
83- test :
84- name : Test
85- needs : [ build ]
86- runs-on : ubuntu-latest
87- steps :
88-
89- # Free GitHub Actions Environment Disk Space
90- - name : Maximize Build Space
91- 92- with :
93- tool-cache : false
94- large-packages : false
95-
96- # Check out the current repository
97- - name : Fetch Sources
98- uses : actions/checkout@v4
99-
100- # Set up the Java environment for the next steps
101- - name : Setup Java
102- uses : actions/setup-java@v4
103- with :
104- distribution : zulu
105- java-version : 21
106-
107- # Setup Gradle
108- - name : Setup Gradle
109- uses : gradle/actions/setup-gradle@v4
110- with :
111- cache-read-only : true
112-
113- # Run tests
114- - name : Run Tests
115- run : ./gradlew check
116-
117- # Collect Tests Result of failed tests
118- - name : Collect Tests Result
119- if : ${{ failure() }}
120- uses : actions/upload-artifact@v4
121- with :
122- name : tests-result
123- path : ${{ github.workspace }}/build/reports/tests
124-
12582 # Run plugin structure verification along with IntelliJ Plugin Verifier
12683 verify :
12784 name : Verify plugin
@@ -170,7 +127,7 @@ jobs:
170127 releaseDraft :
171128 name : Release draft
172129 if : github.event_name != 'pull_request'
173- needs : [ build, test, inspectCode, verify ]
130+ needs : [ build, verify ]
174131 runs-on : ubuntu-latest
175132 permissions :
176133 contents : write
You can’t perform that action at this time.
0 commit comments