build(deps): bump werkzeug from 3.0.6 to 3.1.5 in /tools/web-fuzzing-introspection #427
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: Mypy-Pyright-webapp | |
| on: | |
| pull_request: | |
| branches: | |
| main | |
| paths: | |
| - 'tools/web-fuzzing-introspection/**' | |
| - '.github/workflows/webapp-mypy.yml' | |
| permissions: read-all | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| name: Mypy-Pyright-webapp | |
| steps: | |
| - uses: actions/checkout@93cb6efe18208431cddfb8368fd83d5badbf9bfd # v2.4.0 | |
| - name: Set up Python 3.8 | |
| uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v3.0.0 | |
| with: | |
| python-version: 3.8 | |
| - name: Install venv | |
| run: sudo apt-get install python3-venv | |
| - name: Set up venv | |
| run: cd tools/web-fuzzing-introspection && python3 -m venv .venv | |
| - name: Active venv dependencies | |
| run: cd tools/web-fuzzing-introspection && source .venv/bin/activate && pip install -r ./requirements.txt | |
| - name: Install Dependencies | |
| run: | | |
| pip install mypy types-PyYAML pyright types-requests | |
| - name: mypy | |
| run: | | |
| cd tools/web-fuzzing-introspection && mypy --ignore-missing-imports --explicit-package-bases . | |
| - name: pyright | |
| run: | | |
| cd tools/web-fuzzing-introspection && source .venv/bin/activate && pyright . --project=./.pyrightconfig.json --venvpath=./.venv |