Add native SIMD testing and benchmark module #135
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Comment on new Pull Request with checklist | |
| on: | |
| # safe as long as this workflow doesn't access code from the PR branch | |
| pull_request_target: | |
| types: opened | |
| jobs: | |
| checklist-comment: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repository | |
| uses: actions/checkout@v4 | |
| - name: Add comment | |
| run: | |
| gh pr comment $PRNUM --body-file .github/workflows/pr_checklist.md | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| GH_REPO: ${{ github.repository }} | |
| PRNUM: ${{ github.event.pull_request.number }} |