This commit is contained in:
Alexander Batalov 2022-07-05 23:51:30 +03:00
parent 2ebeed3a7a
commit 64d4dbc109
1 changed files with 6 additions and 9 deletions

View File

@ -21,25 +21,22 @@ defaults:
shell: bash
jobs:
static-analysis:
name: Static analysis
StaticAnalysis:
name: Static analysis
runs-on: ubuntu-latest
steps:
steps:
- name: Install
run: |
:
echo ::group::apt update
sudo apt update 2>&1
echo ::endgroup::
run: |
sudo apt update
sudo apt install cppcheck
- name: Clone
uses: actions/checkout@v3
- name: cppcheck
run: cppcheck --std=c++17 src/
run: cppcheck --std=c++17 src/
linux:
name: Linux (${{ matrix.arch }})