Skip to content

CodeQL Security Testing #237

CodeQL Security Testing

CodeQL Security Testing #237

Workflow file for this run

name: CodeQL Security Testing
on:
pull_request:
branches:
- "**"
schedule:
- cron: "0 20 * * 5"
workflow_dispatch:
concurrency:
group: codeql-${{ github.ref }}
cancel-in-progress: true
jobs:
codeQL:
name: CodeQL C#
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: csharp
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: 8.x
- name: Build
run: dotnet build --configuration Release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:csharp"