-
Notifications
You must be signed in to change notification settings - Fork 7
40 lines (37 loc) · 897 Bytes
/
integrations.yml
File metadata and controls
40 lines (37 loc) · 897 Bytes
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
40
name: Integrations
on:
push:
paths:
- 'integrations/**'
- '.github/workflows/integrations.yml'
pull_request:
paths:
- 'integrations/**'
- '.github/workflows/integrations.yml'
jobs:
opentelemetry:
name: OpenTelemetry Integration
runs-on: ubuntu-latest
defaults:
run:
working-directory: integrations/opentelemetry
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.26'
- run: go mod tidy
- run: go test -race -timeout 60s ./...
gorm:
name: GORM Integration
runs-on: ubuntu-latest
defaults:
run:
working-directory: integrations/gorm
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.26'
- run: go mod tidy
- run: go test -race -timeout 60s ./...