浏览代码

update github builder to run on windows and linux

Jason Rivard 2 年之前
父节点
当前提交
f965dcdc30
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5 1
      .github/workflows/maven.yml

+ 5 - 1
.github/workflows/maven.yml

@@ -5,7 +5,11 @@ on: [ push, pull_request ]
 jobs:
   build:
 
-    runs-on: ubuntu-latest
+    runs-on: ${{ matrix.os }}
+
+    strategy:
+      matrix:
+        os: [ ubuntu-latest, windows-latest ]
 
     steps:
     - uses: actions/checkout@v2