From e51ae7cab2712e71e6d57d2bccb4a38cf0cbbe40 Mon Sep 17 00:00:00 2001 From: Aljen Uitbeijerse Date: Thu, 25 Nov 2021 14:14:10 +0100 Subject: [PATCH] Run CI unittest also on windows --- .github/workflows/aa_unittest.yml | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/workflows/aa_unittest.yml b/.github/workflows/aa_unittest.yml index 9acf6e0df..98606c4c6 100644 --- a/.github/workflows/aa_unittest.yml +++ b/.github/workflows/aa_unittest.yml @@ -24,7 +24,11 @@ jobs: name: Run all tests that do NOT have the Large tag # The type of runner that the job will run on - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + # Multi-platform job version + os: [ubuntu-latest, windows-latest] # Steps represent a sequence of tasks that will be executed as part of the job steps: @@ -86,7 +90,11 @@ jobs: name: Run all tutorial tests with only a minimal parameter xml / tools install # The type of runner that the job will run on - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} + strategy: + matrix: + # Multi-platform job version + os: [ubuntu-latest, windows-latest] # Steps represent a sequence of tasks that will be executed as part of the job steps: