fix typos in comments #73
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, pull_request] | |
jobs: | |
build: | |
name: Runs cppcheck | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: install packages | |
run: sudo apt install cppcheck | |
- name: run cppcheck | |
run: cppcheck/run_cppcheck.sh | |
- name: store the cppcheck output as an artifact | |
if: ${{ always() }} | |
uses: actions/upload-artifact@v3 | |
with: | |
path: 'cppcheck/out/*' | |