added vscode sample launch and task #64
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/xls/resharper-code-analysis-action | |
name: Resharper C++ Code Analysis | |
on: [ push, pull_request ] | |
env: | |
# Path to the CMake build directory. | |
build: '${{ github.workspace }}' | |
config: 'Debug' | |
jobs: | |
analyze: | |
name: Analyze | |
runs-on: windows-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Run Resharper Code Analysis | |
uses: xls/resharper-code-analysis-action@main | |
# Provide a unique ID to access the sarif output path | |
id: run-analysis | |
with: | |
solution: ${{ env.build }}/sample.sln | |
buildConfiguration: ${{ env.config }} | |
# Paths to ignore analysis of CMake targets and includes | |
# ignoredPaths: ${{ github.workspace }}/dependencies;${{ github.workspace }}/test | |
# Upload SARIF file to GitHub Code Scanning Alerts | |
- name: Upload SARIF to GitHub | |
uses: github/codeql-action/upload-sarif@v1 | |
with: | |
sarif_file: ${{ steps.run-analysis.outputs.sarif }} | |
# Upload SARIF file as an Artifact to download and view | |
- name: Upload SARIF as an Artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: sarif-file | |
path: ${{ steps.run-analysis.outputs.sarif }} |