Skip to content

Annotate Pull Request #174

Annotate Pull Request

Annotate Pull Request #174

Workflow file for this run

name: Annotate Pull Request
# In a separate workflow because of
# https://securitylab.github.com/research/github-actions-preventing-pwn-requests/
on:
workflow_run:
workflows:
- Python test
types:
- completed
jobs:
python_test_reporter:
runs-on: ubuntu-latest
permissions:
checks: write
if: github.event.workflow_run.name == 'Python test'
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04, windows-2022, macos-14]
python-version:
[
"3.10",
"3.11",
"3.12",
"3.13.0",
"3.14.0-alpha.5",
"pypy3.10",
"pypy3.11",
]
steps:
- name: Test Report
uses: dorny/test-reporter@v1
with:
name: test-py${{ matrix.python-version}}-on-${{ matrix.os }}
reporter: java-junit
artifact: test-py${{ matrix.python-version}}-on-${{ matrix.os }}
path: test_py${{ matrix.python-version }}_on_${{ matrix.os }}.xml