Skip to content

Keep track of resp_validation_error in flask plugin #861

Keep track of resp_validation_error in flask plugin

Keep track of resp_validation_error in flask plugin #861

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@v5
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 }}
strategy:
max-parallel: 7
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy3.9"]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v4
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install .[dev]
- name: Test
run: make test