forked from jupyter-xeus/cpp-terminal
-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (34 loc) · 805 Bytes
/
Copy pathcodeql-analysis.yml
File metadata and controls
38 lines (34 loc) · 805 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
---
name: CodeQL
on:
push:
paths-ignore:
- "dependabot/**"
- '.github/workflows/**'
- '!.github/workflows/codeql-analysis.yml'
pull_request:
branches:
- "dependabot/**"
- '.github/workflows/**'
- '!.github/workflows/codeql-analysis.yml'
schedule:
- cron: '18 23 * * 1'
permissions:
actions: read
contents: read
security-events: write
jobs:
analyze:
name: Analyze
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v7
- name: Initialize CodeQL
uses: github/codeql-action/init@v4.37.3
with:
languages: 'cpp'
- name: Autobuild
uses: github/codeql-action/autobuild@v4.37.3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4.37.3