upgrade to cpp20 on main cmake plus reorganize CI #4
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
| # CMake build of ZEngine for Windows | |
| # | |
| name: Windows Test Build Workflow | |
| on: | |
| push: | |
| branches: ['header-reorganization'] | |
| jobs: | |
| cmake-build: | |
| name: cmake-test-build-windows-debug | |
| runs-on: windows-2022 | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| - name: CMake Build | |
| run: .\Scripts\BuildEngine.ps1 -Configurations 'Debug' -RunClangFormat 0 | |
| shell: pwsh | |
| - name: Run Tests | |
| run: .\Scripts\RunTests.ps1 | |