Files
open-cluster-management/.github/workflows/cloudevents-integration.yml
2026-03-12 07:43:34 +00:00

36 lines
810 B
YAML

name: CloudEventsIntegration
on:
workflow_dispatch: {}
pull_request:
paths:
- 'pkg/server/**'
- 'pkg/work/spoke/*.go'
- 'test/integration/work/**'
- 'vendor/open-cluster-management.io/sdk-go/pkg/cloudevents/**'
- 'vendor/open-cluster-management.io/sdk-go/pkg/server/grpc/**'
branches:
- main
- release-*
env:
GO_VERSION: '1.25'
GO_REQUIRED_MIN_VERSION: ''
permissions:
contents: read
jobs:
grpc-work-integration:
name: grpc-work-integration
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v6.0.2
- name: install Go
uses: actions/setup-go@v6
with:
go-version: ${{ env.GO_VERSION }}
- name: integration
run: make test-cloudevents-work-grpc-integration