Skip to content

Merge pull request #119 from isartor-ai/feat-177-agent-feedback #25

Merge pull request #119 from isartor-ai/feat-177-agent-feedback

Merge pull request #119 from isartor-ai/feat-177-agent-feedback #25

Workflow file for this run

name: CodeQL
on:
# CodeQL is the heaviest job; run it on merges to main + weekly rather than on
# every PR (no per-PR cost on this public repo, but keeps the run count lean).
push:
branches: [main]
schedule:
- cron: '0 6 * * 1'
workflow_dispatch:
concurrency:
group: codeql-${{ github.ref }}
cancel-in-progress: true
permissions:
actions: read
contents: read
security-events: write
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
steps:
- name: Checkout
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:
global-json-file: global.json
- name: Build
run: dotnet build Autofac.sln --configuration Release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3