Skip to content

🐛 Implement proper flow control when sending a body for HTTP/2 #84

🐛 Implement proper flow control when sending a body for HTTP/2

🐛 Implement proper flow control when sending a body for HTTP/2 #84

Workflow file for this run

name: Downstream
on:
push:
branches:
- main
pull_request:
permissions: "read-all"
jobs:
integration:
strategy:
fail-fast: false
matrix:
downstream: [botocore, requests]
runs-on: ubuntu-22.04
timeout-minutes: 30
steps:
- name: "Checkout repository"
uses: "actions/checkout@f43a0e5ff2bd294095638e18286ca9a3d1956744"
- name: "Setup Python"
uses: "actions/setup-python@61a6322f88396a6271a6ee3565807d608ecaddd1"
with:
python-version: "3.x"
- name: "Install dependencies"
run: python -m pip install --upgrade nox
- name: "Run downstream tests"
run: nox -s downstream_${{ matrix.downstream }}