Skip to content

Commit f6f2131

Browse files
Add CodeQL analysis
1 parent 6b5326f commit f6f2131

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
on:
2+
push:
3+
branches: [master, release/*]
4+
paths-ignore:
5+
- '**/*.md'
6+
- '**/*.gitignore'
7+
- '**/*.gitattributes'
8+
9+
pull_request:
10+
branches: [master, release/*]
11+
paths-ignore:
12+
- '**/*.md'
13+
- '**/*.gitignore'
14+
- '**/*.gitattributes'
15+
16+
tags:
17+
- '*.*.*'
18+
19+
workflow_dispatch:
20+
21+
env:
22+
DOTNET_NOLOGO: 1
23+
DOTNET_CLI_TELEMETRY_OPTOUT: 1
24+
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: 1
25+
26+
jobs:
27+
analyse:
28+
runs-on: windows-latest
29+
steps:
30+
- uses: actions/checkout@v2
31+
with:
32+
fetch-depth: 2
33+
- uses: github/codeql-action/init@v1
34+
- uses: github/codeql-action/autobuild@v1
35+
- uses: github/codeql-action/analyze@v1

0 commit comments

Comments
 (0)