Skip to content

Check Python SDK method coverage #366

Check Python SDK method coverage

Check Python SDK method coverage #366

Workflow file for this run

name: Check Python SDK method coverage
on:
workflow_run:
workflows: ["pr-deploy-and-comment"]
types:
- completed
jobs:
python-methods:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
continue-on-error: true
steps:
- name: Checkout Push/Workflow Dispatch
uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.9"
cache: "pip" # caching pip dependencies
- run: pip install beautifulsoup4 markdownify argparse
- name: "Check Python SDK method coverage"
run: python3 .github/workflows/check_python_methods.py --pr ${{ github.event.number }}