Skip to content

feat: YAML workflow definition format with full step type parity #134

feat: YAML workflow definition format with full step type parity

feat: YAML workflow definition format with full step type parity #134

Workflow file for this run

name: CodeQL Analysis
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
schedule:
- cron: '0 6 * * 1'
jobs:
analyze:
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
matrix:
language: [ 'csharp' ]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-dotnet@v5
with:
dotnet-version: 10.0.x
- uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- run: dotnet build WorkflowFramework.slnx -c Release
- uses: github/codeql-action/analyze@v3