generated from softwaredevelop/codespace-default
-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (43 loc) · 1018 Bytes
/
codeql.yml
File metadata and controls
50 lines (43 loc) · 1018 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
39
40
41
42
43
44
45
46
47
48
49
50
---
name: CodeQL
on:
push:
branches:
- "main"
paths:
- "**.py"
pull_request:
branches:
- "main"
paths:
- "**.py"
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
skip-duplicate-actions:
name: Skip Duplicate Actions
runs-on: ubuntu-latest
steps:
- uses: fkirc/skip-duplicate-actions@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
cancel_others: true
concurrent_skipping: never
CodeQL-analyze:
name: CodeQL Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: python
queries: +security-and-quality
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4