1
+ # For most projects, this workflow file will not need changing; you simply need
2
+ # to commit it to your repository.
3
+ #
4
+ # You may wish to alter this file to override the set of languages analyzed,
5
+ # or to provide custom queries or build logic.
6
+ name : " CodeQL"
7
+
8
+ on :
9
+ push :
10
+ branches : [develop]
11
+ pull_request :
12
+ # The branches below must be a subset of the branches above
13
+ branches : [develop]
14
+ schedule :
15
+ - cron : ' 0 15 * * 6'
16
+
17
+ jobs :
18
+ analyze :
19
+ name : Analyze
20
+ runs-on : ubuntu-latest
21
+
22
+ strategy :
23
+ fail-fast : false
24
+ matrix :
25
+ # Override automatic language detection by changing the below list
26
+ # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']
27
+ language : ['csharp']
28
+ # Learn more...
29
+ # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
30
+
31
+ steps :
32
+ - name : Checkout repository
33
+ uses : actions/checkout@v2.3.4
34
+ with :
35
+ fetch-depth : 0
36
+
37
+ # If this run was triggered by a pull request event, then checkout
38
+ # the head of the pull request instead of the merge commit.
39
+ - run : git checkout HEAD^2
40
+ if : ${{ github.event_name == 'pull_request' }}
41
+
42
+ # Initializes the CodeQL tools for scanning.
43
+ - name : Initialize CodeQL
44
+ uses : github/codeql-action/init@v1
45
+ with :
46
+ languages : ${{ matrix.language }}
47
+ # If you wish to specify custom queries, you can do so here or in a config file.
48
+ # By default, queries listed here will override any specified in a config file.
49
+ # Prefix the list here with "+" to use these queries and those in the config file.
50
+ # queries: ./path/to/local/query, your-org/your-repo/queries@main
51
+
52
+ - run : ./build.ps1
53
+ shell : pwsh
54
+
55
+ - name : Perform CodeQL Analysis
56
+ uses : github/codeql-action/analyze@v1
0 commit comments