Skip to content

CodeQL

CodeQL #177

name: "CodeQL"
on:
workflow_dispatch:
schedule:
- cron: '0 0 * * *' # once in a day at 00:00
jobs:
analyze:
name: Analyze
runs-on: windows-latest
strategy:
fail-fast: false
matrix:
language: ['csharp']
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
- name: Setup
uses: actions/setup-dotnet@v3
with:
dotnet-version: 8.0.x
- name: Build solution
run: dotnet build LogShippingService.sln -p:Configuration=Release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3