Skip to content

Added more Flask make_response tests && added headers usage during response generation #790

Added more Flask make_response tests && added headers usage during response generation

Added more Flask make_response tests && added headers usage during response generation #790

Workflow file for this run

name: Python package
on:
pull_request:
push:
branches:
- master
- dev
merge_group:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
make install
- name: Lint
run: make lint
test:
runs-on: ${{ matrix.os }}
needs: [lint]
strategy:
max-parallel: 5
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "pypy3.9"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Test
run: make test