Skip to content

Commit 520184d

Browse files
authored
Create codeql.yml
1 parent 7d8698a commit 520184d

1 file changed

Lines changed: 33 additions & 0 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)