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 d38e5b4 commit cc7c01eCopy full SHA for cc7c01e
.github/workflows/codeql.yml
@@ -0,0 +1,28 @@
1
+name: codeql
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
+ schedule:
7
+ - cron: '0 5 * * 3'
8
9
+jobs:
10
+ codeql:
11
+ runs-on: ubuntu-latest
12
+ name: "CodeQL"
13
+ env:
14
+ CC: gcc
15
+ CXX: g++
16
+ steps:
17
+ - name: Checkout
18
+ uses: actions/checkout@main
19
+ - name: CodeQL Initialization
20
+ uses: github/codeql-action/init@v3
21
+ with:
22
+ languages: cpp
23
+ queries: +security-and-quality
24
+ - name: Build
25
+ shell: bash
26
+ run: script/ci.sh run_build
27
+ - name: CodeQL Analysis
28
+ uses: github/codeql-action/analyze@v3
0 commit comments