Develop #43
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: C++ Build Check | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build-cpp-console-app: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install MSBuild | |
uses: microsoft/[email protected] | |
- name: Build solution | |
run: msbuild app_cpp\StrTP_cpp\Project1.sln /p:Configuration=Release | |
- name: Run tests | |
run: msbuild app_cpp\StrTP_cpp\Project1.sln -t:rebuild -verbosity:diag -property:Configuration=Release |