-
-
Notifications
You must be signed in to change notification settings - Fork 773
54 lines (44 loc) · 1.08 KB
/
Copy pathcodeql-analysis.yml
File metadata and controls
54 lines (44 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
name: "CodeQL"
on:
push:
branches: [ develop, main]
pull_request:
branches: [ develop ]
schedule:
- cron: '41 21 * * 2'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- language: 'csharp'
build-mode: 'autobuild'
steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Install .NET SDK 8.0.x - 9.0.x
uses: actions/setup-dotnet@v5
with:
dotnet-version: |
8.0.x
9.0.x
- name: Install .NET SDK (global.json)
uses: actions/setup-dotnet@v5
with:
global-json-file: global.json
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
- name: Autobuild
uses: github/codeql-action/autobuild@v4
env:
CAKE_INSTALL_SUPPORTED_SDKS: true
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4