Restyle
This commit is contained in:
parent
2ebeed3a7a
commit
64d4dbc109
|
@ -21,25 +21,22 @@ defaults:
|
||||||
shell: bash
|
shell: bash
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
static-analysis:
|
||||||
|
name: Static analysis
|
||||||
|
|
||||||
StaticAnalysis:
|
|
||||||
name: Static analysis
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
|
||||||
|
|
||||||
|
steps:
|
||||||
- name: Install
|
- name: Install
|
||||||
run: |
|
run: |
|
||||||
:
|
sudo apt update
|
||||||
echo ::group::apt update
|
|
||||||
sudo apt update 2>&1
|
|
||||||
echo ::endgroup::
|
|
||||||
sudo apt install cppcheck
|
sudo apt install cppcheck
|
||||||
|
|
||||||
- name: Clone
|
- name: Clone
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
- name: cppcheck
|
- name: cppcheck
|
||||||
run: cppcheck --std=c++17 src/
|
run: cppcheck --std=c++17 src/
|
||||||
|
|
||||||
linux:
|
linux:
|
||||||
name: Linux (${{ matrix.arch }})
|
name: Linux (${{ matrix.arch }})
|
||||||
|
|
Loading…
Reference in New Issue