From 24083f4a8ec5586b6366bbb8caa9c456acb7930f Mon Sep 17 00:00:00 2001 From: Moustapha HappyDev Date: Fri, 22 Dec 2023 17:33:32 +0000 Subject: [PATCH] chore: enable running go tests in CI on windows --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 25bbd57f6..84ddd254e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -14,7 +14,10 @@ concurrency: jobs: test: timeout-minutes: 3 - runs-on: ubuntu-latest + strategy: + matrix: + OS: [ubuntu-latest, windows-latest] + runs-on: ${{ matrix.OS }} steps: - uses: actions/checkout@v2