Skip to content

Commit 754a77e

Browse files
committed
Fix jobs names and execution order
1 parent c53ef82 commit 754a77e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/integration.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
event-loop: ['asyncio']
7171
env:
7272
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
73-
name: Redis ${{ matrix.redis-version }} - RESP${{ matrix.resp-protocol }} ${{ matrix.python-version }} ${{matrix.test-type}}-${{matrix.parser-backend}}-${{matrix.event-loop}}
73+
name: Redis ${{ matrix.redis-version }} (${{matrix.test-type}}); Python ${{ matrix.python-version }}; RESP Parser:${{matrix.parser-backend}}; EL:${{matrix.event-loop}}
7474
steps:
7575
- uses: actions/checkout@v4
7676
- name: Run tests
@@ -83,6 +83,7 @@ jobs:
8383

8484
hiredis-tests:
8585
runs-on: ubuntu-latest
86+
needs: [tests]
8687
timeout-minutes: 60
8788
strategy:
8889
max-parallel: 15
@@ -95,7 +96,7 @@ jobs:
9596
event-loop: [ 'asyncio' ]
9697
env:
9798
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
98-
name: Redis ${{ matrix.redis-version }} - RESP${{ matrix.resp-protocol }} ${{ matrix.python-version }} ${{matrix.test-type}}-${{matrix.parser-backend}}-${{matrix.event-loop}}
99+
name: Redis ${{ matrix.redis-version }} (${{matrix.test-type}}); Python ${{ matrix.python-version }}; RESP Parser:${{matrix.parser-backend}}; EL:${{matrix.event-loop}}
99100
steps:
100101
- uses: actions/checkout@v4
101102
- name: Run tests
@@ -118,6 +119,7 @@ jobs:
118119

119120
uvloop-tests:
120121
runs-on: ubuntu-latest
122+
needs: [tests]
121123
timeout-minutes: 60
122124
strategy:
123125
max-parallel: 15
@@ -130,7 +132,7 @@ jobs:
130132
event-loop: [ 'uvloop' ]
131133
env:
132134
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
133-
name: Redis ${{ matrix.redis-version }} - RESP${{ matrix.resp-protocol }} ${{ matrix.python-version }} ${{matrix.test-type}}-${{matrix.parser-backend}}-${{matrix.event-loop}}
135+
name: Redis ${{ matrix.redis-version }} (${{matrix.test-type}}); Python ${{ matrix.python-version }}; RESP Parser:${{matrix.parser-backend}}; EL:${{matrix.event-loop}}
134136
steps:
135137
- uses: actions/checkout@v4
136138
- name: Run tests

0 commit comments

Comments
 (0)