Skip to content

Update flask requirement from <3,>=2.0.0 to >=2.0.0,<4 #717

Update flask requirement from <3,>=2.0.0 to >=2.0.0,<4

Update flask requirement from <3,>=2.0.0 to >=2.0.0,<4 #717

Workflow file for this run

name: Linting
on:
pull_request:
push:
branches:
- main
jobs:
style:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"
- name: Install Style dependencies
run: |
python -m pip install --upgrade pip
pip install pre-commit
- name: Run linting
run: make lint