1
0
mirror of synced 2026-01-06 06:04:16 -05:00
Files
airbyte/.github/workflows/metadata_service_tests_dagger.yml
2023-04-12 18:38:51 +02:00

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"