Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 9 additions & 6 deletions .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
strategy:
fail-fast: false
matrix:
language: [ 'csharp' ]
include:
- language: csharp
build-mode: manual
steps:
- name: Setup .NET
uses: actions/setup-dotnet@v4
Expand All @@ -34,11 +36,12 @@ jobs:
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Restore .NET tools
run: |
dotnet tool restore
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Restore tools
run: dotnet tool restore
- name: Restore packages
run: dotnet restore
- name: Build
run: dotnet build --no-restore --configuration Release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
Expand Down
Loading