Bump hypothesis from 6.131.30 to 6.138.16 #2123
This file contains hidden or 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
name: Pyright type checks | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
pyright: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11.5 | |
- name: Install and configure Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: 2.1.3 | |
- run: poetry install --with dev --all-extras | |
- uses: jakebailey/pyright-action@v1 | |
with: | |
pylance-version: latest-release |