reformatted files #39
Workflow file for this run
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: Build | |
on: [push] | |
jobs: | |
build_and_run_tests: | |
name: Build and run tests | |
runs-on: windows-2022 | |
steps: | |
- name: Sync | |
uses: actions/checkout@v2 | |
with: | |
submodules: 'recursive' | |
- name: Build Debug configuration | |
working-directory: ${{env.GITHUB_WORKSPACE}} | |
shell: cmd | |
run: .\HelperScripts\Internal\BuildSolution.bat Debug | |
- name: Run tests on Debug configuration | |
working-directory: ${{env.GITHUB_WORKSPACE}} | |
shell: cmd | |
run: .\HelperScripts\Internal\RunTests.bat Debug | |
- name: Build Development configuration | |
working-directory: ${{env.GITHUB_WORKSPACE}} | |
shell: cmd | |
run: .\HelperScripts\Internal\BuildSolution.bat Development | |
- name: Run tests on Development configuration | |
working-directory: ${{env.GITHUB_WORKSPACE}} | |
shell: cmd | |
run: .\HelperScripts\Internal\RunTests.bat Development | |
- name: Build Release configuration | |
working-directory: ${{env.GITHUB_WORKSPACE}} | |
shell: cmd | |
run: .\HelperScripts\Internal\BuildSolution.bat Release | |
- name: Run tests on Release configuration | |
working-directory: ${{env.GITHUB_WORKSPACE}} | |
shell: cmd | |
run: .\HelperScripts\Internal\RunTests.bat Release |