浏览代码

Merge pull request #3098 from assimp/kimkulling-patch-5

add windows build
Kim Kulling 5 年之前
父节点
当前提交
0d9bccbcca
共有 1 个文件被更改,包括 14 次插入0 次删除
  1. 14 0
      .github/workflows/ccpp.yml

+ 14 - 0
.github/workflows/ccpp.yml

@@ -30,3 +30,17 @@ jobs:
       run: cmake --build .
     - name: test
       run: cd bin && ./unit
+
+  windows:
+    runs-on: windows-latest
+    
+    steps:
+    - uses: actions/checkout@v1
+    - name: configure
+      run: cmake CMakeLists.txt
+    - name: build
+      run: cmake --build . --config Release
+    - name: test
+      run: | 
+        cd bin\Release
+        .\unit