more. attempts at fixing tests #22966
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Connector Ops CI - Connector Metadata Checks | |
on: | |
pull_request: | |
paths: | |
- "airbyte-integrations/connectors/source-**" | |
jobs: | |
connector-metadata-checks: | |
name: "Check Connector Metadata" | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Airbyte | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install ci-connector-ops package | |
run: | | |
pip install pipx | |
pipx ensurepath | |
pipx install airbyte-ci/connectors/connector_ops/ | |
- name: Check test strictness level | |
run: check-test-strictness-level | |
- name: Check allowed hosts | |
run: allowed-hosts-checks |