Add pyright to test suite, pyrightconfig.json (#5059)

Co-authored-by: Sebastian Rittau <srittau@rittau.biz>
This commit is contained in:
Jake Bailey
2021-02-23 14:07:42 -08:00
committed by GitHub
parent a1f16da64e
commit c00c7258ea
5 changed files with 148 additions and 1 deletions

View File

@@ -85,6 +85,17 @@ jobs:
- uses: actions/setup-python@v2
- run: ./tests/mypy_test_suite.py
pyright:
name: Run pyright against the stubs
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- uses: actions/setup-node@v2
with:
node-version: '14'
- run: ./tests/pyright_test.py
stubtest:
name: Check stdlib with stubtest
runs-on: ${{ matrix.os }}