We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b5326f commit f6f2131Copy full SHA for f6f2131
.github/workflows/codeql-analysis.yml
@@ -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
11
12
13
14
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