File: test.yml

package info (click to toggle)
libbgcode 0.0~git20260306.c019e78-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,280 kB
  • sloc: cpp: 3,885; python: 307; makefile: 6
file content (18 lines) | stat: -rw-r--r-- 388 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: TestReport

on:
  workflow_run:
    workflows: ['Build']                   # runs after Build workflow
    types:
      - completed

jobs:
  report:
    runs-on: ubuntu-latest
    steps:
    - uses: dorny/test-reporter@v1
      with:
        artifact: /test-results(.*)/
        name: Tests                 
        path: 'tests/**/result-junit-**.xml' 
        reporter: java-junit