-
Notifications
You must be signed in to change notification settings - Fork 10
47 lines (37 loc) · 878 Bytes
/
Copy pathcodeql.yml
File metadata and controls
47 lines (37 loc) · 878 Bytes
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
name: CodeQL
on:
push:
paths-ignore:
- 'docs/**'
- '.clang-format'
- '.gitignore'
- 'LICENSE'
- 'README*'
pull_request:
paths-ignore:
- 'docs/**'
- '.clang-format'
- '.gitignore'
- 'LICENSE'
- 'README*'
schedule:
- cron: '0 0 1 * *'
workflow_dispatch:
env:
MACOSX_DEPLOYMENT_TARGET: 12.0
jobs:
CodeQL:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
with:
fetch-depth: 1
- uses: ./.github/actions/install-dependencies
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: cpp
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3