diff options
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 90d2c8b..e43b9a1 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -28,8 +28,16 @@ jobs: - name: Run Unit & Functional Tests run: | if [ "$RUNNER_OS" = "Windows" ]; then - ./gradlew.bat clean check + ./gradlew.bat clean check --info else ./gradlew clean check fi - shell: bash
\ No newline at end of file + shell: bash + + - name: Upload Unit Test Results + if: always() + uses: actions/upload-artifact@v2 + with: + name: jvm-dump.txt + path: frege-gradle-plugin/**/javacore*.txt + if: runner.os == 'Windows'
\ No newline at end of file |