ci: add a script to check sync and async methods in SDK (#1938)

This commit is contained in:
Vadym Barda
2024-10-01 09:50:26 -04:00
committed by GitHub
parent dd88ac6224
commit 71efff7cee
2 changed files with 76 additions and 0 deletions
+12
View File
@@ -66,6 +66,18 @@ jobs:
uses: ./.github/workflows/_test_scheduler_kafka.yml
secrets: inherit
check-sdk-methods:
name: "Check SDK methods matching"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Run check_sdk_methods script
run: python .github/scripts/check_sdk_methods.py
integration-test:
name: CLI integration test
uses: ./.github/workflows/_integration_test.yml