From 2451a63766409fdc03bbfd3e8fb2e7a74e156779 Mon Sep 17 00:00:00 2001 From: pointfeev Date: Tue, 17 May 2022 11:14:10 -0500 Subject: [PATCH] Update codeql.yml --- .github/workflows/codeql.yml | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index ea4e442..ce77965 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -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