Skip to content

Commit

Permalink
avoid checking cppcheck dir
Browse files Browse the repository at this point in the history
Signed-off-by: kminoda <[email protected]>
  • Loading branch information
kminoda committed Jun 4, 2024
1 parent 4f10212 commit 2d3bbb3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/cppcheck-all.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ jobs:
- name: Install Cppcheck from source
run: |
git clone https://github.com/danmar/cppcheck.git
cd cppcheck
mkdir /tmp/cppcheck
git clone https://github.com/danmar/cppcheck.git /tmp/cppcheck
cd /tmp/cppcheck
git checkout 2.14.1
mkdir build
cd build
Expand Down
5 changes: 3 additions & 2 deletions .github/workflows/cppcheck-differential.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ jobs:
- name: Install Cppcheck from source
run: |
git clone https://github.com/danmar/cppcheck.git
cd cppcheck
mkdir /tmp/cppcheck
git clone https://github.com/danmar/cppcheck.git /tmp/cppcheck
cd /tmp/cppcheck
git checkout 2.14.1
mkdir build
cd build
Expand Down

0 comments on commit 2d3bbb3

Please sign in to comment.