Merge pull request #7568 from cbielow/mztab_fileinfo #23
This file contains 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: cppcheck-action-test | |
on: [push] | |
jobs: | |
build: | |
name: cppcheck-test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: cppcheck | |
uses: deep5050/cppcheck-action@main | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN}} | |
exclude_check: ./src/openms/thirdparty | |
inconclusive: disable | |
other_options: -i./cmake -i./doc -i./src/tests | |
- name: show report | |
run: cat cppcheck_report.txt |