Issue 3688 inconsistent exception behavior #1697
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Downstream | |
| on: [push, pull_request, workflow_dispatch] | |
| permissions: | |
| contents: "read" | |
| jobs: | |
| downstream: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| downstream: [botocore, requests] | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - name: "Checkout repository" | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0 | |
| with: | |
| persist-credentials: false | |
| - name: "Setup Python" | |
| uses: actions/setup-python@e797f83bcb11b83ae66e0230d6156d7c80228e7c # v6.0.0 | |
| with: | |
| python-version: "3.x" | |
| - name: "Install uv" | |
| uses: astral-sh/setup-uv@3259c6206f993105e3a61b142c2d97bf4b9ef83d # v7.1.0 | |
| with: | |
| version: "0.9.5" | |
| - name: "Run downstream tests" | |
| run: uvx nox -s downstream_${{ matrix.downstream }} |