Skip to content

SCALRCORE-33689: Remove Deprecated set-output From Workflows #2

SCALRCORE-33689: Remove Deprecated set-output From Workflows

SCALRCORE-33689: Remove Deprecated set-output From Workflows #2

Workflow file for this run

name: Downstream
on: [push, pull_request]
permissions: "read-all"
jobs:
integration:
strategy:
fail-fast: false
matrix:
downstream: [botocore, requests]
runs-on: ubuntu-18.04
timeout-minutes: 30
steps:
- name: "Checkout repository"
uses: "actions/checkout@755da8c3cf115ac066823e79a1e1788f8940201b"
- name: "Setup Python"
uses: "actions/setup-python@5ccb29d8773c3f3f653e1705f474dfaa8a06a912"
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 }}