We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be7ade9 commit 1703fffCopy full SHA for 1703fff
.github/workflows/build.yml
@@ -38,8 +38,14 @@ jobs:
38
java-version: 21
39
- name: Setup Gradle
40
uses: gradle/actions/setup-gradle@v5
41
- - name: Build plugin
42
- run: ./gradlew buildPlugin
+ - name: Build and test plugin
+ run: ./gradlew check buildPlugin
43
+ - name: Collect test results
44
+ if: ${{ failure() }}
45
+ uses: actions/upload-artifact@v6
46
+ with:
47
+ name: tests-result
48
+ path: ${{ github.workspace }}/build/reports/tests
49
- name: Prepare plugin artifact
50
id: artifact
51
shell: bash
0 commit comments