-
-
Notifications
You must be signed in to change notification settings - Fork 0
52 lines (42 loc) · 1.16 KB
/
CodeQL.yml
File metadata and controls
52 lines (42 loc) · 1.16 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
name: CodeQL
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
schedule:
- cron: '23 3 * * 1'
permissions:
security-events: write
packages: read
actions: read
contents: read
jobs:
analyze:
name: Analyze C#
runs-on: windows-2022
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Setup .NET
uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- name: Cache NuGet packages
uses: actions/cache@v5
with:
path: ~/.nuget/packages
key: nuget-${{ runner.os }}-${{ hashFiles('**/Directory.Packages.props') }}
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: csharp
build-mode: manual
config-file: ./.github/codeql/codeql-config.yml
- name: Restore solution
run: dotnet restore UniversalDeviceToolkit.sln
- name: Build solution
run: dotnet build UniversalDeviceToolkit.sln --configuration Release --no-restore
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4