29 lines
890 B
YAML
29 lines
890 B
YAML
name: Connector metadata service CI
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
paths:
|
|
- "airbyte-ci/connectors/metadata_service/**"
|
|
jobs:
|
|
connector_metadata_service_ci:
|
|
name: Connector metadata service CI
|
|
runs-on: medium-runner
|
|
env:
|
|
CI_GITHUB_ACCESS_TOKEN: ${{ secrets.GH_PAT_MAINTENANCE_OCTAVIA }}
|
|
steps:
|
|
- name: Checkout Airbyte
|
|
uses: actions/checkout@v2
|
|
- name: Run test pipeline for the metadata lib
|
|
id: metadata-lib-test-pipeline
|
|
uses: ./.github/actions/run-dagger-pipeline
|
|
with:
|
|
subcommand: "metadata test lib"
|
|
context: "pull_request"
|
|
- name: Run test for the metadata orchestrator
|
|
id: metadata-orchestrator-test-pipeline
|
|
uses: ./.github/actions/run-dagger-pipeline
|
|
with:
|
|
subcommand: "metadata test orchestrator"
|
|
context: "pull_request"
|