Skip to content

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

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 #46

Workflow file for this run

name: Black
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", ]
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install black
- name: Analysing the code with black
run: |
black pyimgur examples tests *.py --check