Skip to content

Mention myself in README #28

Mention myself in README

Mention myself in README #28

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@61a6322f88396a6271a6ee3565807d608ecaddd1 # v4.7.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 }}