⬆️ Update coverage requirement from <7.7,>=7.2.7 to >=7.2.7,<7.9 (#223) #735
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: | |
| 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@d632683dd7b4114ad314bca15554477dd762a938" | |
| - name: "Setup Python" | |
| uses: "actions/setup-python@8d9ed9ac5c53483de85588cdf95a591a75ab9f55" | |
| 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 }} |