Skip to content

Fix HTTP version in debug log #712

Fix HTTP version in debug log

Fix HTTP version in debug log #712

Workflow file for this run

name: Downstream
on: [push, pull_request]
permissions: "read-all"
jobs:
downstream:
strategy:
fail-fast: false
matrix:
downstream: [botocore, requests]
runs-on: ubuntu-22.04
timeout-minutes: 30
steps:
- name: "Checkout repository"
uses: actions/checkout@3df4ab11eba7bda6032a0b82a6bb43b11571feac # v4.0.0
- name: "Setup Python"
uses: actions/setup-python@0a5c61591373683505ea898e09a3ea4f39ef2b9c # v5.0.0
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 }}