Skip to content

Include cgi.FieldStorage in paste.util #71

Include cgi.FieldStorage in paste.util

Include cgi.FieldStorage in paste.util #71

Workflow file for this run

name: tests
on:
- push
- workflow_dispatch
- pull_request
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python: "3.8"
env: py38
- python: "3.9"
env: py39
- python: "3.10"
env: py310
- python: "3.11"
env: py311
- python: "3.12"
env: py312
- python: pypy-3.8
env: pypy3
name: ${{ matrix.env }} on Python ${{ matrix.python }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python }}
- run: pip install tox
- run: tox
env:
TOXENV: ${{ matrix.env }}