Explorar o código

update github builder to run on windows and linux

Jason Rivard %!s(int64=2) %!d(string=hai) anos
pai
achega
f965dcdc30
Modificáronse 1 ficheiros con 5 adicións e 1 borrados
  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