We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e908b3 commit a609b0aCopy full SHA for a609b0a
.github/workflows/makefile.yml
@@ -8,17 +8,27 @@ on:
8
9
jobs:
10
build:
11
-
12
runs-on: ubuntu-latest
13
+
14
steps:
15
- - uses: actions/checkout@v4
16
+ - uses: actions/checkout@v3
17
- name: Install dependencies
+ run: |
18
+ sudo apt-get update
19
+ sudo apt-get install -y gcc-9 libsqlite3-dev libssl-dev
20
21
+ - name: Build
22
run: make
- - name: Run check
- run: make check
23
- - name: Run distcheck
24
- run: make distcheck
+ lint:
25
+ runs-on: ubuntu-latest
26
27
+ steps:
28
29
30
+ - name: Install cppcheck
31
+ run: sudo apt-get install -y cppcheck
32
33
+ - name: Static code analysis
34
+ run: cppcheck --enable=all --suppress=missingIncludeSystem .
0 commit comments