We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c7df6b commit 5d131f9Copy full SHA for 5d131f9
.github/workflows/codeql.yml
@@ -40,19 +40,22 @@ jobs:
40
with:
41
fetch-depth: 0
42
43
- - name: Setup .NET
44
- uses: actions/setup-dotnet@v4
45
- with:
46
- global-json-file: global.json
47
-
48
# Initializes the CodeQL tools for scanning.
49
- name: Initialize CodeQL
50
uses: github/codeql-action/init@v3
51
52
languages: ${{ matrix.language }}
53
54
- - name: Autobuild
55
- uses: github/codeql-action/autobuild@v3
+ - name: Setup .NET
+ uses: actions/setup-dotnet@v4
+ with:
+ global-json-file: global.json
+
+ - name: Restore dependencies
+ run: dotnet restore --locked-mode
56
57
+ - name: Build
58
+ run: dotnet build --no-restore
59
60
- name: Perform CodeQL Analysis
61
uses: github/codeql-action/analyze@v3
0 commit comments