Bump cryptography from 46.0.2 to 46.0.3 #662
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: Types | |
| ############################# | |
| # Start the job on all push # | |
| ############################# | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| pull_request: | |
| jobs: | |
| types: | |
| name: Pyright Type Checking | |
| runs-on: ubuntu-latest | |
| environment: test | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| - name: Install dependencies | |
| run: | | |
| pip install --upgrade pip | |
| pip install pipenv | |
| python --version; pip --version; pipenv --version | |
| pipenv requirements > requirements.txt | |
| pip install -r requirements.txt | |
| - name: Run pyright | |
| run: pyright |