Skip to content

Commit

Permalink
.github: fix reported
Browse files Browse the repository at this point in the history
  • Loading branch information
khancyr committed Oct 20, 2023
1 parent 02cea35 commit ce08f93
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/test-report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,33 +20,33 @@ permissions:
jobs:
report:
runs-on: ubuntu-latest
strategy:
fail-fast: false # don't cancel if a job from the matrix fails
matrix:
config: [
sitltest-plane,
sitltest-quadplane,
sitltest-copter-tests1a,
sitltest-copter-tests1b,
sitltest-copter-tests1c,
sitltest-copter-tests1d,
sitltest-copter-tests1e,
sitltest-copter-tests2a,
sitltest-copter-tests2b,
sitltest-heli,
sitltest-blimp,
sitltest-rover,
sitltest-sailboat,
sitltest-balancebot,
sitltest-sub,
sitltest-tracker,
base-unit-tests,
]
# strategy:
# fail-fast: false # don't cancel if a job from the matrix fails
# matrix:
# config: [
# sitltest-plane,
# sitltest-quadplane,
# sitltest-copter-tests1a,
# sitltest-copter-tests1b,
# sitltest-copter-tests1c,
# sitltest-copter-tests1d,
# sitltest-copter-tests1e,
# sitltest-copter-tests2a,
# sitltest-copter-tests2b,
# sitltest-heli,
# sitltest-blimp,
# sitltest-rover,
# sitltest-sailboat,
# sitltest-balancebot,
# sitltest-sub,
# sitltest-tracker,
# base-unit-tests,
# ]

steps:
- uses: dorny/test-reporter@v1
with:
artifact: test-results-junit-${{matrix.config}} # artifact name
name: ${{matrix.config}} Tests Report # Name of the check run which will be created
artifact: /test-results-junit-*/ # artifact name
name: Tests Report $1 # Name of the check run which will be created
path: '*.xml' # Path to test results (inside artifact .zip)
reporter: java-junit # Format of test results

0 comments on commit ce08f93

Please sign in to comment.