Skip to content

Commit cc7c01e

Browse files
authored
Switch back to custom CodeQL configuration
1 parent d38e5b4 commit cc7c01e

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/codeql.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)