From d0bc98b63643d3934875149c024aecd8697baa29 Mon Sep 17 00:00:00 2001 From: Michael Wright Date: Thu, 28 Jan 2021 16:50:46 +0100 Subject: [PATCH] ci: Integration Test for all OS's (#1537) Integration Test for all OS --- .github/workflows/full_suite_integration_tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/full_suite_integration_tests.yml b/.github/workflows/full_suite_integration_tests.yml index eca35da8cf..500c871326 100644 --- a/.github/workflows/full_suite_integration_tests.yml +++ b/.github/workflows/full_suite_integration_tests.yml @@ -72,7 +72,10 @@ jobs: run-it-full-suite: needs: [ should_run_it ] if: needs.should_run_it.outputs.run_integration_tests == 'true' - runs-on: [ubuntu-latest, macos-latest, windows-latest] + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ macos-latest, windows-latest, ubuntu-latest ] outputs: job_status: ${{ job.status }} build-scan-url: ${{ steps.run-it.outputs.build-scan-url }}