Errored status codes are now also status codes (https://github.com/ne… #140
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: Unit tests Windows | |
| on: | |
| push: | |
| branches: | |
| - develop | |
| - master | |
| pull_request: | |
| schedule: | |
| - cron: '0 0 1 * *' | |
| jobs: | |
| WinVS2019: | |
| name: Windows VS2022 | |
| runs-on: windows-2022 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: CMake build tests Windows | |
| shell: bash | |
| run: | | |
| mkdir build | |
| cd build | |
| cmake .. | |
| cmake --build . --config Release | |
| - name: CMake run tests Windows | |
| shell: bash | |
| run: | | |
| cd build | |
| bin/Release/test-result | |
| bin/Release/test-status-code | |
| bin/Release/test-status-code-noexcept | |
| bin/Release/test-status-code-not-posix | |
| bin/Release/test-status-code-p0709a |