Thanks to visit codestin.com Credit goes to github.com
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 e3bc5d1 commit 2cc8b32Copy full SHA for 2cc8b32
.github/workflows/codeql.yml
@@ -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