Skip to content

⬆️ Bump actions/setup-python from 4.7.0 to 5.2.0 (#146) #464

⬆️ Bump actions/setup-python from 4.7.0 to 5.2.0 (#146)

⬆️ Bump actions/setup-python from 4.7.0 to 5.2.0 (#146) #464

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@8ade135a41bc03ea155e62e844d188df1ea18608"
- 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 }}