Update codeql.yml
This commit is contained in:
parent
4ba0fb08d0
commit
2451a63766
1 changed files with 13 additions and 2 deletions
15
.github/workflows/codeql.yml
vendored
15
.github/workflows/codeql.yml
vendored
|
@ -30,8 +30,19 @@ jobs:
|
|||
languages: ${{ matrix.language }}
|
||||
config-file: ./.github/codeql-config.yml
|
||||
|
||||
- name: Autobuild
|
||||
uses: github/codeql-action/autobuild@v2
|
||||
- name: Setup
|
||||
uses: actions/setup-dotnet@v1
|
||||
with:
|
||||
dotnet-version: 6.x.x
|
||||
|
||||
- name: Restore
|
||||
run: dotnet restore
|
||||
|
||||
- name: Build
|
||||
run: dotnet build --no-restore --configuration Release
|
||||
|
||||
- name: Test
|
||||
run: dotnet test --no-build --verbosity normal --configuration Release
|
||||
|
||||
- name: Analyze
|
||||
uses: github/codeql-action/analyze@v2
|
||||
|
|
Loading…
Reference in a new issue