Build & runs tests on Windows #123
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
| # __________________________________ CONTENTS ___________________________________ | |
| # | |
| # This is a workflow file for GitHub Actions that runs tests on Windows. | |
| # The workflow is triggered automatically on every push or pull request. | |
| # Run results are then archived as GitHub artifacts. | |
| # | |
| # By default, Windows provides MSVC which links 'STL' stdlib. | |
| # _______________________________________________________________________________ | |
| name: "Run tests: Windows" | |
| run-name: "Build & runs tests on Windows" | |
| on: [ push, pull_request ] | |
| jobs: | |
| build-and-test: | |
| runs-on: windows-latest | |
| # 'windows-latest' uses corresponding year's MSVC as a default toolchain, | |
| # see https://github.com/actions/virtual-environments | |
| steps: | |
| - name: "Checkout repository" | |
| uses: actions/checkout@v4 | |
| - name: "Configure CMake" | |
| run: cmake --preset msvc | |
| - name: "Build project" | |
| run: cmake --build --preset msvc | |
| - name: "Run tests" | |
| run: ctest --preset msvc -C Debug | |
| # Visual Studio is a multi-configuration generator, we need to specify one for the run | |
| - name: "Upload test artifacts" | |
| uses: actions/upload-artifact@v4 | |
| if: always() | |
| with: | |
| name: "artifact-${{matrix.os}}-${{matrix.cxx}}" | |
| path: | | |
| build/ | |
| !build/auxiliary/ | |
| !build/benchmarks/ | |
| !build/examples/ | |
| !build/tests/ |