File tree Expand file tree Collapse file tree 1 file changed +45
-0
lines changed Expand file tree Collapse file tree 1 file changed +45
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : " CodeQL"
2
+
3
+ on :
4
+ push :
5
+ branches : ["main", "CU-*", "SRU*"]
6
+ paths :
7
+ - iso20022-core/src
8
+ pull_request :
9
+ branches : ["main"]
10
+ paths :
11
+ - iso20022-core/src
12
+ schedule :
13
+ - cron : " 59 12 * * 2"
14
+
15
+ jobs :
16
+ analyze :
17
+ name : Analyze
18
+ runs-on : ubuntu-latest
19
+ permissions :
20
+ actions : read
21
+ contents : read
22
+ security-events : write
23
+
24
+ strategy :
25
+ fail-fast : false
26
+ matrix :
27
+ language : [java]
28
+
29
+ steps :
30
+ - name : Checkout
31
+ uses : actions/checkout@v2
32
+
33
+ - name : Initialize CodeQL
34
+ uses : github/codeql-action/init@v2
35
+ with :
36
+ languages : ${{ matrix.language }}
37
+ queries : +security-and-quality
38
+
39
+ - name : Autobuild
40
+ uses : github/codeql-action/autobuild@v3
41
+
42
+ - name : Perform CodeQL Analysis
43
+ uses : github/codeql-action/analyze@v3
44
+ with :
45
+ category : " /language:${{ matrix.language }}"
You can’t perform that action at this time.
0 commit comments