Forráskód Böngészése

feat: support windows platform in ci.yaml

Ishan Pandhare 2 éve
szülő
commit
2dd9b9767e
1 módosított fájl, 3 hozzáadás és 1 törlés
  1. 3 1
      .github/workflows/ci.yaml

+ 3 - 1
.github/workflows/ci.yaml

@@ -13,12 +13,14 @@ jobs:
   build:
     strategy:
       matrix:
-        os: [ubuntu-latest, macos-latest]
+        os: [ubuntu-latest, macos-latest, windows-latest]
         include:
           - os: ubuntu-latest
             flutter_profile: development-linux-x86_64
           - os: macos-latest
             flutter_profile: development-mac-x86_64
+          - os: windows-latest
+            flutter_profile: development-windows-x86_64
     runs-on: ${{ matrix.os }}
 
     steps: