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 0915755 commit 8a003fbCopy full SHA for 8a003fb
1 file changed
.github/workflows/codeql-analysis.yml
@@ -0,0 +1,27 @@
1
+name: codeql-analysis.yml
2
+on:
3
+ push:
4
+ branches: [ "master" ]
5
+ pull_request:
6
7
+jobs:
8
+ analyze:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - name: Checkout repository
12
+ uses: actions/checkout@v4
13
+ - name: Setup JDK 17
14
+ uses: actions/setup-java@v5
15
+ with:
16
+ distribution: temurin
17
+ java-version: 17
18
+ - name: Initialize CodeQL
19
+ uses: github/codeql-action/init@v3
20
21
+ languages: java
22
+ - name: Autobuild
23
+ uses: github/codeql-action/autobuild@v3
24
+
25
+ - name: Perform CodeQL Analysis
26
+ uses: github/codeql-action/analyze@v3
27
0 commit comments