Skip to content

❇️ Discrete idle connection watcher scheduler #515

❇️ Discrete idle connection watcher scheduler

❇️ Discrete idle connection watcher scheduler #515

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, niquests, requests, boto3, sphinx, docker]
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- name: "Checkout repository"
uses: "actions/checkout@d632683dd7b4114ad314bca15554477dd762a938"
- name: "Setup Python"
uses: "actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3"
with:
python-version: "3.11"
- name: "Install dependencies"
run: python -m pip install --upgrade nox
- name: "Undo Docker Config: docker-py"
if: matrix.downstream == 'docker'
run: |
docker logout
rm -rf ~/.docker
- name: "Run downstream tests"
run: nox -s downstream_${{ matrix.downstream }}