File tree Expand file tree Collapse file tree 1 file changed +34
-34
lines changed
Expand file tree Collapse file tree 1 file changed +34
-34
lines changed Original file line number Diff line number Diff line change @@ -97,40 +97,40 @@ jobs:
9797 path : ./build/distributions/content/*/*
9898
9999 # Run tests and upload a code coverage report
100- test :
101- name : Test
102- needs : [ build ]
103- runs-on : ubuntu-latest
104- steps :
105-
106- # Check out current repository
107- - name : Fetch Sources
108- uses : actions/checkout@v4
109-
110- # Set up Java environment for the next steps
111- - name : Setup Java
112- uses : actions/setup-java@v4
113- with :
114- distribution : zulu
115- java-version : 17
116-
117- # Setup Gradle
118- - name : Setup Gradle
119- uses : gradle/gradle-build-action@v2
120- with :
121- gradle-home-cache-cleanup : true
122-
123- # Run tests
124- - name : Run Tests
125- run : ./gradlew check
126-
127- # Collect Tests Result of failed tests
128- - name : Collect Tests Result
129- if : ${{ failure() }}
130- uses : actions/upload-artifact@v3
131- with :
132- name : tests-result
133- path : ${{ github.workspace }}/build/reports/tests
100+ test :
101+ name : Test
102+ needs : [ build ]
103+ runs-on : ubuntu-latest
104+ steps :
105+
106+ # Check out current repository
107+ - name : Fetch Sources
108+ uses : actions/checkout@v4
109+
110+ # Set up Java environment for the next steps
111+ - name : Setup Java
112+ uses : actions/setup-java@v4
113+ with :
114+ distribution : zulu
115+ java-version : 17
116+
117+ # Setup Gradle
118+ - name : Setup Gradle
119+ uses : gradle/gradle-build-action@v2
120+ with :
121+ gradle-home-cache-cleanup : true
122+
123+ # Run tests
124+ - name : Run Tests
125+ run : ./gradlew check
126+
127+ # Collect Tests Result of failed tests
128+ - name : Collect Tests Result
129+ if : ${{ failure() }}
130+ uses : actions/upload-artifact@v3
131+ with :
132+ name : tests-result
133+ path : ${{ github.workspace }}/build/reports/tests
134134
135135 # Run plugin structure verification along with IntelliJ Plugin Verifier
136136 verify :
You can’t perform that action at this time.
0 commit comments