Skip to content

updates some features and fix an issue with program crashing (#6) #32

updates some features and fix an issue with program crashing (#6)

updates some features and fix an issue with program crashing (#6) #32

Workflow file for this run

name: CodeQL Advanced
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
analyze:
runs-on: windows-latest
permissions:
security-events: write
packages: read
actions: read
contents: read
strategy:
fail-fast: false
matrix:
include:
- language: actions
build-mode: none
- language: csharp
build-mode: manual
steps:
- uses: actions/checkout@v4
- uses: github/codeql-action/init@v4
with:
languages: ${{ matrix.language }}
build-mode: ${{ matrix.build-mode }}
- name: Setup MSBuild
uses: microsoft/setup-msbuild@v2
- name: Restore dependencies
run: msbuild AoShinhoServ-Monitor.sln /t:Restore /p:Configuration=Release
- name: Build solution
run: msbuild AoShinhoServ-Monitor.sln /p:Configuration=Release
- uses: github/codeql-action/analyze@v4
with:
category: "/language:${{matrix.language}}"