Manual resolution slider for when paused #180
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: Windows build testing | |
on: [push, pull_request] | |
jobs: | |
job: | |
name: windows-vs17 | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 | |
with: | |
submodules: true | |
fetch-depth: 0 | |
- name: Configure | |
run: cmake -B build | |
- name: Build Debug | |
run: cmake --build build --config Debug --verbose | |
- name: Build Release | |
run: cmake --build build --config Release --verbose |