1
0
mirror of https://github.com/octoleo/plantuml.git synced 2024-06-04 09:30:48 +00:00

Merge pull request #1012 from matthew16550/test-results

Make CI test results more visible
This commit is contained in:
PlantUML 2022-05-05 10:45:41 +02:00 committed by GitHub
commit 36a7cbfca1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 ]