Skip to content

Use modern startup format (#137) #8

Use modern startup format (#137)

Use modern startup format (#137) #8

Workflow file for this run

name: "CodeQL Advanced"
on:
push:
branches: [ "develop", "master" ]
pull_request:
branches: [ "develop", "master" ]
schedule:
- cron: '0 6 * * 1'
env:
DOTNET_VERSION: 9.x.x
jobs:
analyze:
name: Analyze (csharp)
runs-on: 'ubuntu-latest'
permissions:
# required for all workflows
security-events: write
# required to fetch internal or private CodeQL packs
packages: read
# only required for workflows in private repositories
actions: read
contents: read
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: csharp
build-mode: manual
- name: Setup .NET SDK ${{ env.DOTNET_VERSION }}
uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Build .NET
shell: bash
run: |
dotnet restore
dotnet publish API/API.csproj -c Release
dotnet publish LiveControlGateway/LiveControlGateway.csproj -c Release
dotnet publish Cron/Cron.csproj -c Release
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
with:
category: "/language:csharp"