Fix CI workflow for markdown file only changes (#4786)
This commit is contained in:
parent
7d5722a74d
commit
77b3a1ea60
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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 ]
|
||||
|
|
|
|||
Loading…
Reference in New Issue