Add format-files script. #143
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 | |
on: | |
push: | |
branches: | |
- '*' | |
pull_request: | |
branches: | |
- '*' | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: create cmake project | |
run: cmake -S . -B build -G "Visual Studio 17 2022" -A x64 | |
- name: build project | |
run: cmake --build build --config Debug | |
- name: execute test | |
run: ./build/Debug/TestInterval.exe | |