Browse Source

update github builder to run on windows and linux

Jason Rivard 2 năm trước cách đây
mục cha
commit
f965dcdc30
1 tập tin đã thay đổi với 5 bổ sung1 xóa
  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