#2479: CI: add ASAN options to always detect leaks and abort on error (non-zero code) #5611
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: PR checks (PR description format) | |
| on: | |
| pull_request: | |
| types: [opened, edited, reopened, synchronize] | |
| jobs: | |
| check: | |
| if: ${{ github.base_ref == 'develop' }} | |
| name: Check PR description | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: DARMA-tasking/check-pr-fixes-issue@master | |
| with: | |
| pr_branch: ${{ github.head_ref }} | |
| pr_title: ${{ github.event.pull_request.title }} | |
| pr_description: ${{ github.event.pull_request.body }} |