Make CI test results more visible

This commit is contained in:
matthew16550 2022-05-05 18:25:40 +10:00
parent 229a6129e2
commit ccd0ac83ad
1 changed files with 9 additions and 1 deletions

View File

@ -90,7 +90,15 @@ jobs:
run: gradle -q compileJava --no-daemon
- name: Test
run: gradle -q test --no-daemon
run: gradle test --no-daemon
- name: Upload test reports
uses: actions/upload-artifact@v3
if: ${{ always() }}
with:
# Using github.run_number here to reduce confusion when downloading & comparing from several builds
name: ${{ github.run_number }}-${{ matrix.os }}-java-${{ matrix.java_version }}-test-reports
path: build/reports/tests/
upload:
needs: [ workflow_config, test ]