From ec7ac44b82064aadffdec084ad0439c6be6eec40 Mon Sep 17 00:00:00 2001 From: Jake Carter Date: Mon, 26 Jun 2023 16:07:10 -0500 Subject: [PATCH] Run build test on all 3 os's --- .github/workflows/Build_Examples.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/Build_Examples.yml b/.github/workflows/Build_Examples.yml index 16143662c5e..744374d7f7c 100644 --- a/.github/workflows/Build_Examples.yml +++ b/.github/workflows/Build_Examples.yml @@ -19,9 +19,11 @@ on: jobs: Build_Examples: + strategy: + matrix: + os: [ubuntu-latest, windows-latest, macos-latest] # The type of runner that the job will run on - runs-on: - - ubuntu-latest + runs-on: ${{ matrix.os }} steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it