Skip to content

Bump flask from 3.0.2 to 3.1.3 in /examples/authorization_by_code #44

Bump flask from 3.0.2 to 3.1.3 in /examples/authorization_by_code

Bump flask from 3.0.2 to 3.1.3 in /examples/authorization_by_code #44

Workflow file for this run

name: Tests
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
cache: 'pip' # caching pip dependencies
- run: pip install -r requirements.txt
- name: Testing the code
run: |
pytest tests