Skip to content

Bump flask from 2.2.2 to 2.3.2 #211

Bump flask from 2.2.2 to 2.3.2

Bump flask from 2.2.2 to 2.3.2 #211

Workflow file for this run

name: Test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
os: ['ubuntu-latest', 'mac-latest']
python-version: [3.8, 3.9, '3.10']
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v1
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip tox
pip install -r requirements.txt
- name: Lint
run: |
tox -e lint
- name: Bandit
run: |
tox -e bandit
- name: Run tests
run: |
tox -e py
- name: Clean Up
run: |
tox -e clean