Skip to content

Fix DateTime parsing for ISO dates below year 100 and add tests #215

Fix DateTime parsing for ISO dates below year 100 and add tests

Fix DateTime parsing for ISO dates below year 100 and add tests #215

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 (C#)
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v7
- name: Setup .NET
uses: actions/setup-dotnet@v6
with:
dotnet-version: '10.0.x'
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: csharp
queries: security-extended
- name: Build (Release)
run: dotnet build ExcelReader.slnx --configuration Release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v4
with:
category: "/language:csharp"