-
Notifications
You must be signed in to change notification settings - Fork 809
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Download most recent stubs on pyright test
- Loading branch information
Showing
1 changed file
with
6 additions
and
1 deletion.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -123,7 +123,7 @@ jobs: | |
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- run: pip install mypy types-regex types-setuptools | ||
- run: pip install types-regex types-setuptools mypy>=1.5 | ||
- run: mypy . --python-version=${{ matrix.python-version }} | ||
|
||
pyright: | ||
|
@@ -134,6 +134,11 @@ jobs: | |
python-version: ['3.7', '3.8', '3.9', '3.10', '3.11', '3.12'] | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
# pyright vendors typeshed, but let's make sure we have the most up to date stubs | ||
- run: pip install types-regex types-setuptools | ||
- uses: jakebailey/[email protected] | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
|