Skip to content

CodeQL

CodeQL #405

name: "CodeQL"
on:
push:
branches: [ main ]
paths-ignore:
- ".github/workflows/create-zip-artifact.yml"
- ".github/ISSUE_TEMPLATE/*"
- ".github/dependabot.yml"
- ".vscode/*"
- "azure/*"
- "docs/*"
- "host.json"
- "**.md"
- ".gitignore"
pull_request:
branches: [ main ]
schedule:
- cron: '39 0 * * 0'
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'csharp' ]
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Initialize CodeQL
uses: github/codeql-action/init@v1
with:
languages: ${{ matrix.language }}
- name: Setup dotnet SDK
uses: actions/setup-dotnet@v1.9.0
with:
dotnet-version: "6.0.x"
- name: Autobuild
uses: github/codeql-action/autobuild@v1
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v1