Microsoft C++ Code Analysis #3
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
name: Microsoft C++ Code Analysis | |
on: workflow_dispatch | |
env: | |
BUILD_TYPE: Debug | |
jobs: | |
analyze: | |
name: Run MSVC code analysis | |
runs-on: windows-latest | |
permissions: | |
actions: read | |
contents: read | |
security-events: write | |
strategy: | |
fail-fast: false | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Configure CMake | |
run: cmake -S . -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} | |
- name: Initialize MSVC Code Analysis | |
uses: microsoft/[email protected] | |
# Provide a unique ID to access the sarif output path | |
id: run-analysis | |
with: | |
cmakeBuildDirectory: ${{github.workspace}}/build | |
buildConfiguration: ${{env.BUILD_TYPE}} | |
ruleset: .github/extra-conf/msvc-analysis-custom.ruleset | |
- name: Upload SARIF file to GitHub Code Scanning Alerts | |
uses: github/codeql-action/upload-sarif@v3 | |
with: | |
sarif_file: ${{ steps.run-analysis.outputs.sarif }} |