We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d51a84e commit cda10c1Copy full SHA for cda10c1
2 files changed
.github/actions/test-dependency-asyncio-rest/action.yaml
@@ -35,8 +35,8 @@ runs:
35
include_types: false
36
include_asyncio: true
37
38
- - name: 'Install aiohttp ${{ matrix.aiohttp-version }}'
39
- run: 'poetry add aiohttp==${{ matrix.aiohttp-version }}'
+ - name: 'Install aiohttp ${{ inputs.aiohttp_version }}'
+ run: 'poetry add aiohttp==${{ inputs.aiohttp_version }}'
40
shell: bash
41
42
- uses: nick-fields/retry@v3
.github/workflows/testing-dependency.yaml
@@ -57,6 +57,8 @@ jobs:
57
deps-cleanup:
58
name: Deps cleanup
59
runs-on: ubuntu-latest
60
+ if: ${{ always() }}
61
+ timeout-minutes: 20
62
needs:
63
- deps-test-setup
64
- dependency-test-rest
0 commit comments