-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Nic Holthaus
committed
Dec 17, 2024
1 parent
b13025f
commit 69a66b6
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: msvc-2022 | ||
|
||
on: | ||
push: | ||
branches: [ '**' ] # Run on all branches | ||
pull_request: | ||
branches: [ '**' ] # Run on all branches | ||
|
||
jobs: | ||
build-windows: | ||
name: Build on Windows with Visual Studio 2022 | ||
runs-on: windows-latest | ||
|
||
steps: | ||
- name: Checkout Repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Configure CMake | ||
run: | | ||
cmake -B build -G "Visual Studio 17 2022" -A x64 | ||
- name: Build | ||
run: | | ||
cmake --build build --config Release | ||
- name: Run Tests | ||
working-directory: build | ||
run: ctest -C Release --output-on-failure |