From 7a2c27484c168065d8225d7e4c64a9dd54956856 Mon Sep 17 00:00:00 2001 From: Jonathan Jogenfors Date: Fri, 17 Nov 2023 12:07:30 +0100 Subject: [PATCH] set matrix strategy in workflow --- .github/workflows/test.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2a91ae274..52dd5c447 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -107,7 +107,11 @@ jobs: cli-e2e-tests: name: Run cli e2e tests - runs-on: [ubuntu-latest, windows-latest] + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + + runs-on: ${{ matrix.os }} defaults: run: working-directory: ./cli