aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/windows.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/windows.yml')
-rw-r--r--.github/workflows/windows.yml20
1 files changed, 20 insertions, 0 deletions
diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml
new file mode 100644
index 00000000..12ff1282
--- /dev/null
+++ b/.github/workflows/windows.yml
@@ -0,0 +1,20 @@
+name: windows
+on: [push]
+jobs:
+
+ build:
+ name: build
+ runs-on: [ windows-latest ]
+ steps:
+ - name: Check out code
+ uses: actions/checkout@v1
+
+ - name: Configure
+ run: cmake -B build
+
+ - name: Build
+ run: cmake --build build
+
+ - name: Test
+ run: ctest -C Debug --output-on-failure
+