We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2aa34ff commit 3ff9b5fCopy full SHA for 3ff9b5f
2 files changed
.github/codeql/codeql-config.yaml
@@ -0,0 +1,2 @@
1
+paths-ignore:
2
+ - src/website/shared/migrations
.github/workflows/codeql.yaml
@@ -0,0 +1,30 @@
+name: "CodeQL"
+
3
+on:
4
+ pull_request:
5
+ push:
6
+ branches: main
7
+ workflow_dispatch:
8
9
+permissions:
10
+ actions: read
11
+ contents: read
12
+ security-events: write
13
14
+jobs:
15
+ codeql:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - name: Checkout repository
19
+ uses: actions/checkout@v4
20
+ - uses: cachix/install-nix-action@v29
21
+ - name: Initialize CodeQL
22
+ uses: github/codeql-action/init@v3
23
+ with:
24
+ languages: "python"
25
+ queries: security-and-quality
26
+ config-file: .github/codeql/codeql-config.yaml
27
+ - name: Perform CodeQL Analysis
28
+ uses: github/codeql-action/analyze@v3
29
30
+ category: "/language:python"
0 commit comments