Skip to content

Add files via upload #2

Add files via upload

Add files via upload #2

Workflow file for this run

name: Summary

Check failure on line 1 in .github/workflows/summary.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/summary.yml

Invalid workflow file

`build_test_with_coverage` is not a valid event name
on:
pull_request:
build_test_with_coverage:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate summary
id: summary
run: |
echo $GITHUB_ENV
cat $GITHUB_ENV
echo "SUMMARY=\"$(python3 .github/workflows/report.py)\"" >> $GITHUB_ENV
- name: Notify coverage
uses: actions/github-script@v7
with:
script: |
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: '${{ env.SUMMARY }}'
})