-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci-connector-ops: split workflows(#21474)
- Loading branch information
1 parent
a85aef7
commit ed2780c
Showing
2 changed files
with
24 additions
and
18 deletions.
There are no files selected for viewing
19 changes: 1 addition & 18 deletions
19
.github/workflows/connector_ops_ci.yml → ...s/connector_teams_review_requirements.yml
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
name: Connector Ops CI - Check SAT strictness level | ||
|
||
on: | ||
pull_request: | ||
paths: | ||
- "airbyte-integrations/connectors/source-**" | ||
jobs: | ||
test-strictness-level: | ||
name: "Check test strictness level" | ||
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 |