Skip to content

Bump flask from 1.1.4 to 2.3.2 #23

Bump flask from 1.1.4 to 2.3.2

Bump flask from 1.1.4 to 2.3.2 #23

Workflow file for this run

# A very basic Github Workflow.
# This workflow will install Python dependencies, run tests and lint with a
# single version of Python.
# For more information see:
# https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions
name: Test
on:
push:
branches:
- "*"
pull_request:
branches:
- "*"
jobs:
build:
name: "Build and Test"
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
pip install --upgrade pip setuptools wheel
pip install -r requirements.txt -r requirements-dev.txt
pip install -e .
# - name: Run pre-commit checks
# run: |
# pip install pre-commit
# pre-commit install
# pre-commit run --all-files
- name: Run tests
run: |
pytest -ra