-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (40 loc) · 981 Bytes
/
codeql-analysis.yml
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
name: "CodeQL"
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true
on:
push:
branches: trunk
paths:
- '**.c'
- '**.h'
- '**/codeql-analysis.yml'
pull_request:
branches: trunk
paths:
- '**.c'
- '**.h'
- '**/codeql-analysis.yml'
# schedule:
# - cron: '0 6 * * 6'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
# We must fetch at least the immediate parents so that if this is a
# pull request then we can checkout the head.
fetch-depth: 2
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: 'cpp'
- run: sudo apt-get install -y meson
- run: |
meson setup _build
ninja -C _build
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3