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