Fix CI workflow for markdown file only changes (#4786)

This commit is contained in:
Utkarsh Umesan Pillai 2023-08-18 14:35:12 -07:00 committed by GitHub
parent 7d5722a74d
commit 77b3a1ea60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 3 deletions

View File

@ -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

View File

@ -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 ]