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 7273c6a commit 900cdb5Copy full SHA for 900cdb5
.github/workflows/run-checks.yml
@@ -7,6 +7,9 @@ jobs:
7
build-project:
8
uses: ./.github/workflows/run-build-project.yml
9
10
+ codeql:
11
+ uses: ./.github/workflows/run-codeql.yml
12
+
13
build-website:
14
needs: [ build-project ]
15
uses: ./.github/workflows/run-build-website.yml
.github/workflows/run-codeql.yml
@@ -0,0 +1,20 @@
1
+name: CodeQL
2
+on:
3
+ workflow_dispatch:
4
+ workflow_call:
5
6
+jobs:
+ analyze:
+ runs-on: macos-latest
+ permissions:
+ security-events: write
+ packages: read
+ steps:
+ - uses: actions/checkout@v4
+ - uses: ./.github/actions/setup-environment
16
+ - uses: github/codeql-action/init@v3
17
+ with:
18
+ languages: actions, kotlin
19
20
+ - uses: github/codeql-action/analyze@v3
0 commit comments