C++ Code Analysis #136
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
# This workflow uses actions that are not certified by GitHub. | |
# They are provided by a third-party and are governed by | |
# separate terms of service, privacy policy, and support | |
# documentation. | |
# | |
# Find more information at: | |
# https://github.com/microsoft/msvc-code-analysis-action | |
name: C++ Code Analysis | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
schedule: | |
- cron: '22 23 * * 3' | |
env: | |
BUILD_TYPE: Debug | |
BUILD_DIR: '${{ github.workspace }}/build' | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Configure CMake | |
run: cmake -B ${{ env.build }} -DCMAKE_BUILD_TYPE=${{ env.config }} | |
- name: Run MSVC Code Analysis | |
uses: microsoft/[email protected] | |
id: run-analysis | |
with: | |
cmakeBuildDirectory: ${{ env.BUILD_DIR }} | |
buildConfiguration: ${{ env.BUILD_TYPE }} | |
ruleset: NativeRecommendedRules.ruleset | |
- name: Upload SARIF to GitHub | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: ${{ steps.run-analysis.outputs.sarif }} | |
- name: Upload SARIF as an Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: sarif-file | |
path: ${{ steps.run-analysis.outputs.sarif }} |