-
Notifications
You must be signed in to change notification settings - Fork 12
52 lines (45 loc) · 1.53 KB
/
codeql.yml
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: "Code Scanning"
on:
pull_request:
branches: [ main, main-vnext ]
push:
branches: [ main, main-vnext ]
schedule:
# ┌───────────── minute (0 - 59)
# │ ┌───────────── hour (0 - 23)
# │ │ ┌───────────── day of the month (1 - 31)
# │ │ │ ┌───────────── month (1 - 12 or JAN-DEC)
# │ │ │ │ ┌───────────── day of the week (0 - 6 or SUN-SAT)
# │ │ │ │ │
# │ │ │ │ │
# │ │ │ │ │
# * * * * *
- cron: '30 1 * * 0'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
analyze_csharp:
name: Analyze Csharp
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v4.1.7
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.0.x
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: csharp
queries: +security-and-quality,security-extended
- name: Build
run: dotnet build IoTHub.Portal.sln --configuration Release
working-directory: src/
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3