Skip to content

[DOCS-2823] README: Remove class names in method refs #626

[DOCS-2823] README: Remove class names in method refs

[DOCS-2823] README: Remove class names in method refs #626

Workflow file for this run

name: Python Driver Pyright Check
on:
pull_request:
paths:
- "**"
defaults:
run:
working-directory: .
jobs:
pyright:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install pyright
run: |
yarn global add pyright
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.11
cache: "pip"
- name: Install project deps
run: pip install . .[test] .[lint]
- name: Run pyright type-checker
run: pyright .