CodeQL #17
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Copyright (c) Microsoft Corporation. | |
# Licensed under the MIT License. | |
# | |
# http://go.microsoft.com/fwlink/?LinkId=248929 | |
name: "CodeQL" | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
paths-ignore: | |
- '*.md' | |
- LICENSE | |
- '.nuget/*' | |
- build/*.cmd | |
- build/*.json | |
- build/*.props | |
- build/*.ps1 | |
- build/*.targets | |
- build/*.yml | |
schedule: | |
- cron: '31 2 * * 5' | |
jobs: | |
analyze: | |
name: Analyze (${{ matrix.language }}) | |
runs-on: windows-latest | |
timeout-minutes: 360 | |
permissions: | |
security-events: write | |
packages: read | |
strategy: | |
fail-fast: false | |
matrix: | |
language: [c-cpp, csharp] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- if: matrix.language == 'c-cpp' | |
name: 'Install Ninja' | |
run: choco install ninja | |
- uses: ilammy/msvc-dev-cmd@v1 | |
- name: Initialize CodeQL | |
uses: github/codeql-action/init@v3 | |
with: | |
languages: ${{ matrix.language }} | |
build-mode: manual | |
- if: matrix.language == 'c-cpp' | |
name: 'Configure CMake (C/C++)' | |
working-directory: ${{ github.workspace }} | |
run: cmake --preset=x64-Debug | |
- if: matrix.language == 'c-cpp' | |
name: 'Build (C/C++)' | |
working-directory: ${{ github.workspace }} | |
run: cmake --build out\build\x64-Debug | |
- if: matrix.language == 'csharp' | |
name: 'Build (C#)' | |
working-directory: ./MakeSpriteFont | |
run: msbuild MakeSpriteFont.csproj /p:Configuration=Debug /p:Platform=AnyCPU | |
- name: Perform CodeQL Analysis | |
uses: github/codeql-action/analyze@v3 | |
with: | |
category: "/language:${{ matrix.language }}" |