Skip to content

Commit 2f700a2

Browse files
authored
Add windows to the CI (#98)
1 parent c09a9cf commit 2f700a2

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/build.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,20 @@ jobs:
3333
run: |
3434
make
3535
36+
windows-latest:
37+
runs-on: windows-latest
38+
39+
steps:
40+
- name: Clone
41+
uses: actions/checkout@v1
42+
43+
- name: Build
44+
run: |
45+
mkdir build
46+
cd build
47+
cmake ..
48+
cmake --build . --config Release
49+
3650
# ubuntu-latest-gcc:
3751
# runs-on: ubuntu-latest
3852
#

0 commit comments

Comments
 (0)