From a9fe942e8017fcb12d6dfe1b6e72ad40e0fb1d21 Mon Sep 17 00:00:00 2001 From: pointfeev Date: Tue, 20 Dec 2022 16:44:04 -0500 Subject: [PATCH] Update codeql.yml --- .github/workflows/codeql.yml | 21 +++------------------ 1 file changed, 3 insertions(+), 18 deletions(-) diff --git a/.github/workflows/codeql.yml b/.github/workflows/codeql.yml index 340edd1..18804f4 100644 --- a/.github/workflows/codeql.yml +++ b/.github/workflows/codeql.yml @@ -1,4 +1,4 @@ -name: CodeQL +name: Test on: push: @@ -7,29 +7,17 @@ on: branches: [ main ] jobs: - analyze: - name: Analyze + test: + name: Test runs-on: windows-latest permissions: actions: read contents: read - security-events: write - - strategy: - fail-fast: false - matrix: - language: [ 'csharp' ] steps: - name: Checkout uses: actions/checkout@v3 - - name: Initialize - uses: github/codeql-action/init@v2 - with: - languages: ${{ matrix.language }} - config-file: ./.github/codeql-config.yml - - name: Setup uses: actions/setup-dotnet@v1 with: @@ -43,6 +31,3 @@ jobs: - name: Test run: dotnet test --no-build --verbosity normal --configuration Release - - - name: Analyze - uses: github/codeql-action/analyze@v2