Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 2cc8b32

Browse files
committed
Added CodeQL code
1 parent e3bc5d1 commit 2cc8b32

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed

.github/workflows/codeql.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
jobs:
2+
analyze:
3+
name: Analyze
4+
permissions:
5+
actions: read
6+
contents: read
7+
security-events: write
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Checkout repository
11+
uses: actions/checkout@v3
12+
- name: Initialize CodeQL
13+
uses: github/codeql-action/init@v2
14+
with:
15+
languages: ${{ matrix.language }}
16+
queries: security-and-quality
17+
- name: Autobuild
18+
uses: github/codeql-action/autobuild@v2
19+
- name: Perform CodeQL Analysis
20+
uses: github/codeql-action/analyze@v2
21+
strategy:
22+
fail-fast: false
23+
matrix:
24+
language:
25+
- python
26+
name: CodeQL
27+
'on':
28+
push:
29+
branches:
30+
- main

0 commit comments

Comments
 (0)