Skip to content

Commit 1abc7f7

Browse files
author
Alex Peck
committed
codeql
1 parent 2b0d0a1 commit 1abc7f7

File tree

1 file changed

+13
-2
lines changed

1 file changed

+13
-2
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,8 @@ jobs:
5252

5353
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
5454
# If this step fails, then you should remove it and run the build manually (see below)
55-
- name: Autobuild
56-
uses: github/codeql-action/autobuild@v2
55+
#- name: Autobuild
56+
# uses: github/codeql-action/autobuild@v2
5757

5858
# ℹ️ Command-line programs to run using the OS shell.
5959
# 📚 https://git.io/JvXDl
@@ -66,5 +66,16 @@ jobs:
6666
# make bootstrap
6767
# make release
6868

69+
- name: Setup .NET SDK
70+
uses: actions/setup-dotnet@v3.2.0
71+
with:
72+
dotnet-version: '9.0.x'
73+
74+
- name: Restore dependencies
75+
run: dotnet restore
76+
77+
- name: Build
78+
run: dotnet build --configuration Debug --no-restore
79+
6980
- name: Perform CodeQL Analysis
7081
uses: github/codeql-action/analyze@v2

0 commit comments

Comments
 (0)