Skip to content
This repository was archived by the owner on Sep 17, 2025. It is now read-only.

Commit 70c62a4

Browse files
authored
Create codeql-analysis.yml (#1034)
1 parent 2ad4a3a commit 70c62a4

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: CodeQL Analysis
2+
3+
on:
4+
workflow_dispatch:
5+
push:
6+
branches-ignore:
7+
- 'release/*'
8+
9+
jobs:
10+
CodeQL-Build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v2
16+
17+
# Initializes the CodeQL tools for scanning.
18+
- name: Initialize CodeQL
19+
uses: github/codeql-action/init@v1
20+
with:
21+
languages: python
22+
23+
- name: Autobuild
24+
uses: github/codeql-action/autobuild@v1
25+
26+
- name: Perform CodeQL Analysis
27+
uses: github/codeql-action/analyze@v1

0 commit comments

Comments
 (0)