diff --git a/.github/workflows/gradle-pr-build.yml b/.github/workflows/gradle-pr-build.yml index b2394c0f34..b1b8187897 100644 --- a/.github/workflows/gradle-pr-build.yml +++ b/.github/workflows/gradle-pr-build.yml @@ -39,12 +39,19 @@ jobs: run: chmod +x gradlew - name: Build with release Kotlin version run: ./gradlew clean build ktlint - - name: Upload artifacts + - name: Upload dependency verification report uses: actions/upload-artifact@v2 if: failure() with: name: Build artifacts path: '**/build/**/dependency-verification-report.html' if-no-files-found: warn + - name: Upload test results + uses: actions/upload-artifact@v2 + if: failure() + with: + name: Test artifacts + path: '**/tests/**/*.html' + if-no-files-found: warn - name: Build with dev Kotlin version run: ./gradlew -PkotlinDev clean build ktlint