diff --git a/.github/workflows/ci-instrumentation-libraries-md.yml b/.github/workflows/ci-instrumentation-libraries-md.yml index 1a54a1ed1..b9d384511 100644 --- a/.github/workflows/ci-instrumentation-libraries-md.yml +++ b/.github/workflows/ci-instrumentation-libraries-md.yml @@ -3,7 +3,7 @@ # Description: This workflow exists to unblock documentation-only PRs. -# IMPORTANT: This workflow MUST use the same 'name' as the non -md workflow. +# IMPORTANT: This workflow MUST use the same 'name' and 'matrix' as the non -md workflow. name: Test instrumentation libraries diff --git a/.github/workflows/ci-md.yml b/.github/workflows/ci-md.yml index 1dde2355a..1ecb0470c 100644 --- a/.github/workflows/ci-md.yml +++ b/.github/workflows/ci-md.yml @@ -3,7 +3,7 @@ # Description: This workflow exists to unblock documentation-only PRs. -# IMPORTANT: This workflow MUST use the same 'name' as the non -md workflow. +# IMPORTANT: This workflow MUST use the same 'name' and 'matrix' as the non -md workflow. name: Build @@ -14,7 +14,20 @@ on: - '**.md' jobs: - build-test: + build-test-stable: + strategy: + matrix: + os: [ windows-latest, ubuntu-latest ] + version: [ net462, net6.0, net7.0 ] + exclude: + - os: ubuntu-latest + version: net462 + + runs-on: ubuntu-latest + steps: + - run: 'echo "No build required"' + + build-test-experimental: strategy: matrix: os: [ windows-latest, ubuntu-latest ]