Skip to content

Bump the benchmarks group with 1 update #344

Bump the benchmarks group with 1 update

Bump the benchmarks group with 1 update #344

Workflow file for this run

name: CodeQL
on:
push:
branches: [ master, develop ]
pull_request:
branches: [ master, develop ]
schedule:
# Weekly scan (Mondays 06:00 UTC) to catch newly published query updates.
- cron: '0 6 * * 1'
concurrency:
group: codeql-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
security-events: write
jobs:
analyze:
name: Analyze (${{ matrix.language }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language: [ csharp, python ]
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup .NET
if: matrix.language == 'csharp'
uses: actions/setup-dotnet@v6
with:
dotnet-version: '10.0.x'
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
queries: security-extended
- name: Build (Release)
if: matrix.language == 'csharp'
run: dotnet build ExcelReader.slnx --configuration Release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: "/language:${{ matrix.language }}"