diff --git a/.github/workflows/build-and-test-feature.yml b/.github/workflows/build-and-test-feature.yml index 41865a4b8..a5725e800 100644 --- a/.github/workflows/build-and-test-feature.yml +++ b/.github/workflows/build-and-test-feature.yml @@ -14,24 +14,20 @@ jobs: build: - uses: ./.github/workflows/build-and-test-workflow.yml - with: - platform: ubuntu-latest - build_type: Release + strategy: + fail-fast: false + matrix: + platform: + - ubuntu-latest + - macos-latest + build_type: + - Release + - Debug - # build: + runs-on: ${{ matrix.platform }} - # strategy: - # fail-fast: false - # matrix: - # platform: - # - ubuntu-latest - # - macos-latest - # build_type: - # - Release - # - Debug - - # uses: ./.github/workflows/build-and-test-workflow.yml - # with: - # platform: ${{ matrix.platform }} - # build_type: ${{ matrix.build_type }} + steps: + - uses: ./.github/workflows/build-and-test-workflow.yml + with: + platform: ${{ matrix.platform }} + build_type: ${{ matrix.build_type }}