cmake: try adding install target #55
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: Inspect Code with R++ | |
on: [push, pull_request] | |
jobs: | |
inspect: | |
runs-on: windows-2022 | |
name: Inspect Code | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Create Build Environment | |
run: cmake -E make_directory ${{github.workspace}}/build | |
- name: Configure CMake | |
shell: bash | |
working-directory: ${{github.workspace}}/build | |
run: | | |
cmake .. -DCMAKE_BUILD_TYPE=Debug -A Win32 | |
- name: Inspect solution | |
uses: muno92/[email protected] | |
with: | |
exclude: "**/external/**.*" | |
failOnIssue: 0 | |
solutionPath: ${{github.workspace}}/build/rcmp.sln |