forked from teleproxy/teleproxy
-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (42 loc) · 1.14 KB
/
Copy pathstatic-analysis.yml
File metadata and controls
54 lines (42 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: Static Analysis
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
cppcheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install cppcheck
run: sudo apt-get update && sudo apt-get install -y cppcheck
- name: Run cppcheck
run: make lint
dashboard-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 'stable'
- name: Install dashboard-linter
run: go install github.com/grafana/dashboard-linter@latest
- name: Lint Grafana dashboards
run: dashboard-linter lint dashboards/*.json --strict
codeql:
runs-on: ubuntu-latest
permissions:
security-events: write
steps:
- uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: c-cpp
- name: Build
run: |
sudo apt-get update && sudo apt-get install -y build-essential libssl-dev zlib1g-dev
make -j$(nproc)
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3