Browse Source

update github builder to run on windows and linux

Jason Rivard 2 years ago
parent
commit
f965dcdc30
1 changed files with 5 additions and 1 deletions
  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