fix: add logic to slow down api calls to avoid rate limiting #183
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.9" | |
- name: Install ci-connector-ops package | |
run: pip install --quiet -e ./tools/ci_connector_ops | |
- name: Check test strictness level | |
run: check-test-strictness-level | |
- name: Check allowed hosts | |
run: allowed-hosts-checks |