name: "CodeQL" on: push: branches: [main] pull_request: branches: [main] workflow_dispatch: jobs: analyze: name: Analyze runs-on: ubuntu-latest strategy: fail-fast: false matrix: language: [csharp] steps: - name: Checkout Repository uses: actions/checkout@v2 with: fetch-depth: 1 - name: Setup .NET uses: actions/setup-dotnet@v1 with: dotnet-version: 6.0.x - name: Restore Dependencies run: dotnet restore - name: Build run: dotnet build --no-restore - name: Initialize CodeQL uses: github/codeql-action/init@v1 with: languages: ${{ matrix.language }} queries: security-and-quality - name: Autobuild uses: github/codeql-action/autobuild@v1 - name: Perform CodeQL Analysis uses: github/codeql-action/analyze@v1