From 2dd9b9767e2beb4fca959129d16b107410b7c2f1 Mon Sep 17 00:00:00 2001 From: Ishan Pandhare Date: Sat, 8 Oct 2022 19:50:30 +0530 Subject: [PATCH] feat: support windows platform in ci.yaml --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 7b7c889a72..204e455d94 100644 --- a/.github/workflows/ci.yaml +++ b/.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: