Bump werkzeug from 3.1.4 to 3.1.5 #2
Workflow file for this run
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: Run Tests | |
| on: | |
| pull_request: | |
| workflow_dispatch: | |
| workflow_call: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v5 | |
| with: | |
| python-version: 3.13.5 | |
| - name: Install dependencies | |
| run: | | |
| curl -sSL https://install.python-poetry.org | python3 - | |
| poetry lock | |
| poetry install --with dev | |
| - name: Run pytest | |
| run: poetry run pytest tests/ | |
| - name: Run bandit | |
| run: poetry run bandit -c pyproject.toml -r libdb | |
| - name: Run mypy | |
| run: poetry run mypy libdb |