-
Notifications
You must be signed in to change notification settings - Fork 772
39 lines (32 loc) · 1.07 KB
/
integration-md.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# 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:
sql-test:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ net6.0, net7.0, net8.0 ]
steps:
- run: 'echo "No build required"'
w3c-trace-context-test:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ net6.0, net7.0, net8.0 ]
steps:
- run: 'echo "No build required"'
otlp-exporter-test:
runs-on: ubuntu-latest
strategy:
matrix:
version: [ net6.0, net7.0 , net8.0 ]
steps:
- run: 'echo "No build required"'