Merge pull request #100 from TheBlueMatt/main
[ldk-sample] / .github / workflows / build.yml
index 1a70ea03f9f973d1632ae776480e95085c5ac233..acde23e5cba5d1f985f0acff3c630e7a9af5404a 100644 (file)
@@ -6,11 +6,17 @@ jobs:
   build:
     strategy:
       matrix:
-        toolchain: [ stable, beta ]
+        platform: [ ubuntu-latest, macos-latest, windows-latest ]
+        toolchain: [ stable, 1.48.0 ]
         include:
           - toolchain: stable
             check-fmt: true
-    runs-on: ubuntu-latest
+        exclude:
+          - platform: macos-latest
+            toolchain: 1.48.0
+          - platform: windows-latest
+            toolchain: stable
+    runs-on: ${{ matrix.platform }}
     steps:
       - name: Checkout source code
         uses: actions/checkout@v2