Update LICENSE #35
This file contains hidden or 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: Build Solution - Multithreading (Release) | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v2 | |
| - name: Set up Visual Studio Build Tools | |
| uses: microsoft/setup-msbuild@v1.1 | |
| - name: Restore NuGet packages | |
| run: nuget restore NOUS_Multithreading/NOUS_Multithreading.sln | |
| - name: Build solution with C++20 | |
| run: msbuild NOUS_Multithreading/NOUS_Multithreading.sln /p:Configuration=Release /p:LanguageStandard=c++20 | |
| - name: Run tests (optional) | |
| run: | | |
| echo "Running tests..." |