Skip to content

Major overhaul: interactive HTML report, Myers diff, CLI expansion, preflight checks, and test coverage to 81% #73

Major overhaul: interactive HTML report, Myers diff, CLI expansion, preflight checks, and test coverage to 81%

Major overhaul: interactive HTML report, Myers diff, CLI expansion, preflight checks, and test coverage to 81% #73

Workflow file for this run

name: CodeQL
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: "0 18 * * 0"
workflow_dispatch:
permissions:
actions: read
contents: read
security-events: write
jobs:
analyze:
name: Analyze
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
language:
- csharp
- actions
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up .NET
if: ${{ matrix.language == 'csharp' }}
uses: actions/setup-dotnet@v4
with:
global-json-file: global.json
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Autobuild
if: ${{ matrix.language == 'csharp' }}
uses: github/codeql-action/autobuild@v3
- name: Analyze
uses: github/codeql-action/analyze@v3
continue-on-error: true