Add option for suppression file in valgrind memcheck [AP-3695] #310
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: Lint | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| tags: | |
| - "*" | |
| pull_request: | |
| jobs: | |
| lint: | |
| name: Lint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Setup | |
| run: pip install trim cmakelang | |
| - name: Check whitespace | |
| run: | | |
| trim *.cmake | |
| git diff --exit-code | |
| - name: Lint cmake files | |
| run: | | |
| cmake-lint *.cmake |