Skip to content

Commit 900cdb5

Browse files
committed
Try GitHub CodeQL
1 parent 7273c6a commit 900cdb5

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

.github/workflows/run-checks.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ jobs:
77
build-project:
88
uses: ./.github/workflows/run-build-project.yml
99

10+
codeql:
11+
uses: ./.github/workflows/run-codeql.yml
12+
1013
build-website:
1114
needs: [ build-project ]
1215
uses: ./.github/workflows/run-build-website.yml

.github/workflows/run-codeql.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CodeQL
2+
on:
3+
workflow_dispatch:
4+
workflow_call:
5+
6+
jobs:
7+
analyze:
8+
runs-on: macos-latest
9+
permissions:
10+
security-events: write
11+
packages: read
12+
steps:
13+
- uses: actions/checkout@v4
14+
- uses: ./.github/actions/setup-environment
15+
16+
- uses: github/codeql-action/init@v3
17+
with:
18+
languages: actions, kotlin
19+
20+
- uses: github/codeql-action/analyze@v3

0 commit comments

Comments
 (0)