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 7c573e9 commit 9284e9cCopy full SHA for 9284e9c
.github/workflows/codeql-analysis.yml
@@ -0,0 +1,37 @@
1
+name: "CodeQL"
2
+
3
+on:
4
+ push:
5
+ branches: [ master ]
6
+ pull_request:
7
+ # The branches below must be a subset of the branches above
8
9
10
+jobs:
11
+ analyze:
12
+ name: Analyze
13
+ runs-on: ubuntu-latest
14
+ permissions:
15
+ actions: read
16
+ contents: read
17
+ security-events: write
18
19
+ strategy:
20
+ fail-fast: false
21
+ matrix:
22
+ language: [ 'java' ]
23
24
+ steps:
25
+ - name: Checkout repository
26
+ uses: actions/checkout@v3
27
28
+ - name: Initialize CodeQL
29
+ uses: github/codeql-action/init@v2
30
+ with:
31
+ languages: ${{ matrix.language }}
32
33
+ - name: Autobuild
34
+ uses: github/codeql-action/autobuild@v2
35
36
+ - name: Perform CodeQL Analysis
37
+ uses: github/codeql-action/analyze@v2
0 commit comments