If all files are missing in MRU list, don't show clear button #116
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 | |
on: [push] | |
jobs: | |
build: | |
name: cppcheck-test | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: cppcheck | |
uses: deep5050/cppcheck-action@main | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN}} | |
std: c++17 | |
inline_suppression: enable | |
exclude_check: ./tests | |
output_file: cppcheck_report.txt | |
other_options: --library=wxwidgets | |
- name: print output | |
run: | | |
./.github/review_cppcheck_output.sh |