Переглянути джерело

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