Skip to content

Commit

Permalink
Fix jobs names and execution order
Browse files Browse the repository at this point in the history
  • Loading branch information
uglide committed Oct 16, 2024
1 parent c53ef82 commit 754a77e
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
event-loop: ['asyncio']
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
name: Redis ${{ matrix.redis-version }} - RESP${{ matrix.resp-protocol }} ${{ matrix.python-version }} ${{matrix.test-type}}-${{matrix.parser-backend}}-${{matrix.event-loop}}
name: Redis ${{ matrix.redis-version }} (${{matrix.test-type}}); Python ${{ matrix.python-version }}; RESP Parser:${{matrix.parser-backend}}; EL:${{matrix.event-loop}}
steps:
- uses: actions/checkout@v4
- name: Run tests
Expand All @@ -83,6 +83,7 @@ jobs:

hiredis-tests:
runs-on: ubuntu-latest
needs: [tests]
timeout-minutes: 60
strategy:
max-parallel: 15
Expand All @@ -95,7 +96,7 @@ jobs:
event-loop: [ 'asyncio' ]
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
name: Redis ${{ matrix.redis-version }} - RESP${{ matrix.resp-protocol }} ${{ matrix.python-version }} ${{matrix.test-type}}-${{matrix.parser-backend}}-${{matrix.event-loop}}
name: Redis ${{ matrix.redis-version }} (${{matrix.test-type}}); Python ${{ matrix.python-version }}; RESP Parser:${{matrix.parser-backend}}; EL:${{matrix.event-loop}}
steps:
- uses: actions/checkout@v4
- name: Run tests
Expand All @@ -118,6 +119,7 @@ jobs:

uvloop-tests:
runs-on: ubuntu-latest
needs: [tests]
timeout-minutes: 60
strategy:
max-parallel: 15
Expand All @@ -130,7 +132,7 @@ jobs:
event-loop: [ 'uvloop' ]
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
name: Redis ${{ matrix.redis-version }} - RESP${{ matrix.resp-protocol }} ${{ matrix.python-version }} ${{matrix.test-type}}-${{matrix.parser-backend}}-${{matrix.event-loop}}
name: Redis ${{ matrix.redis-version }} (${{matrix.test-type}}); Python ${{ matrix.python-version }}; RESP Parser:${{matrix.parser-backend}}; EL:${{matrix.event-loop}}
steps:
- uses: actions/checkout@v4
- name: Run tests
Expand Down

0 comments on commit 754a77e

Please sign in to comment.