We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5b914bf commit f68657eCopy full SHA for f68657e
1 file changed
.github/workflows/codeql.yml
@@ -23,18 +23,29 @@ jobs:
23
matrix:
24
include:
25
- language: csharp
26
- build-mode: autobuild
+ build-mode: manual
27
28
steps:
29
- name: Checkout repository
30
uses: actions/checkout@v4
31
32
+ - name: Setup .NET (from global.json)
33
+ uses: actions/setup-dotnet@v4
34
+ with:
35
+ global-json-file: global.json
36
+
37
- name: Initialize CodeQL
38
uses: github/codeql-action/init@v3
39
with:
40
languages: ${{ matrix.language }}
41
build-mode: ${{ matrix.build-mode }}
42
43
+ - name: Restore dependencies
44
+ run: dotnet restore ARCP.slnx
45
46
+ - name: Build
47
+ run: dotnet build ARCP.slnx --configuration Release --no-restore
48
49
- name: Perform CodeQL Analysis
50
uses: github/codeql-action/analyze@v3
51
0 commit comments