alternate workflow for "integration" to accommodate documentation-only PRs (#3132)

This commit is contained in:
Timothy Mothra 2022-04-01 11:51:25 -07:00 committed by GitHub
parent bdbbda8371
commit bab31807ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 47 additions and 0 deletions

47
.github/workflows/integration-md.yml vendored Normal file
View File

@ -0,0 +1,47 @@
# Syntax: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions
# See also: https://docs.github.com/en/repositories/configuring-branches-and-merges-in-your-repository/defining-the-mergeability-of-pull-requests/troubleshooting-required-status-checks#handling-skipped-but-required-checks
# Description: This workflow exists to unblock documentation-only PRs.
# IMPORTANT: This workflow MUST use the same 'name' and 'matrix' as the non -md workflow.
name: Integration Tests
on:
pull_request:
branches: [ main ]
paths:
- '**.md'
jobs:
redis-test:
runs-on: ubuntu-latest
strategy:
matrix:
version: [netcoreapp3.1,net5.0,net6.0]
steps:
- run: 'echo "No build required"'
sql-test:
runs-on: ubuntu-latest
strategy:
matrix:
version: [netcoreapp3.1,net5.0,net6.0]
steps:
- run: 'echo "No build required"'
w3c-trace-context-test:
runs-on: ubuntu-latest
strategy:
matrix:
version: [netcoreapp3.1,net5.0,net6.0]
steps:
- run: 'echo "No build required"'
otlp-exporter-test:
runs-on: ubuntu-latest
strategy:
matrix:
version: [netcoreapp3.1,net5.0,net6.0]
steps:
- run: 'echo "No build required"'