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 7d8698a commit 520184dCopy full SHA for 520184d
1 file changed
.github/workflows/codeql.yml
@@ -0,0 +1,33 @@
1
+name: "CodeQL"
2
+
3
+on:
4
+ push:
5
+ pull_request:
6
+ branches: [ master ]
7
+ schedule:
8
+ - cron: '0 0 * * 0'
9
10
+jobs:
11
+ analyze:
12
+ name: Analyze
13
+ runs-on: macos-latest
14
+ permissions:
15
+ actions: read
16
+ contents: read
17
+ security-events: write
18
19
+ steps:
20
+ - name: Checkout repository
21
+ uses: actions/checkout@v5
22
23
+ - name: Initialize CodeQL
24
+ uses: github/codeql-action/init@v3
25
+ with:
26
+ languages: swift
27
+ build-mode: manual
28
29
+ - name: Manual build step
30
+ run: echo 'No build'
31
32
+ - name: Perform CodeQL Analysis
33
+ uses: github/codeql-action/analyze@v3
0 commit comments