summaryrefslogtreecommitdiff
path: root/.github/workflows/integration.yml
blob: 376391bee8d439c1d32b1e5fef1123e5f69a59ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: Downstream

on: [push, pull_request]

permissions: "read-all"

jobs:
  integration:
    strategy:
      fail-fast: false
      matrix:
        downstream: [botocore, requests]
    runs-on: ubuntu-22.04
    timeout-minutes: 30

    steps:
      - name: "Checkout repository"
        uses: "actions/checkout@8f4b7f84864484a7bf31766abe9204da3cbe65b3"

      - name: "Setup Python"
        uses: "actions/setup-python@57ded4d7d5e986d7296eab16560982c6dd7c923b"
        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 }}