Fix bug: failure to convert to json string #13
Workflow file for this run
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: | |
branches: [ "master" ] | |
pull_request: | |
branches: [ "master" ] | |
jobs: | |
lint: | |
name: cppcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install cppcheck | |
run: sudo apt-get -y install cppcheck | |
- name: Check cppcheck version | |
run: cppcheck --version | |
- name: cppcheck the code | |
run: cppcheck --quiet -i fuzz-test -i old -i utest . |