Skip to content

[codex] Improve net472 QR image decode parity #261

[codex] Improve net472 QR image decode parity

[codex] Improve net472 QR image decode parity #261

Workflow file for this run

name: CodeQL
on:
push:
branches: [ main, master ]
pull_request:
schedule:
- cron: '0 5 * * 1'
workflow_dispatch:
concurrency:
group: codeql-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
analyze:
name: Analyze
# Prefer private/self-hosted runners for private repos to reduce hosted spend.
runs-on: ${{ fromJSON(github.event.repository.private && '["self-hosted","linux"]' || '["ubuntu-latest"]') }}
timeout-minutes: 15
permissions:
security-events: write
contents: read
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET 8
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Setup .NET 10
uses: actions/setup-dotnet@v4
with:
dotnet-version: '10.0.x'
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: csharp
- name: Restore
run: |
dotnet restore CodeGlyphX/CodeGlyphX.csproj -p:TargetFramework=net8.0
- name: Build
run: |
dotnet build CodeGlyphX/CodeGlyphX.csproj -c Release -f net8.0 --no-restore
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: '/language:csharp'