Update cppcheck.yml

This commit is contained in:
SChernykh
2021-09-05 13:09:28 +02:00
parent 71245a3873
commit 09c1294c6e
2 changed files with 32 additions and 0 deletions

View File

@@ -24,3 +24,30 @@ jobs:
run: |
cd cppcheck
./run.sh
cppcheck-windows:
runs-on: windows-latest
steps:
- name: Install cppcheck
run: choco install cppcheck
- name: Checkout repository
uses: actions/checkout@v2
with:
submodules: true
- name: Setup cmake
uses: lukka/get-cmake@latest
- name: cmake p2pool
run: |
mkdir build
cd build
cmake .. -G "Visual Studio 16 2019"
- name: Run cppcheck
run: |
cd cppcheck
./run.cmd