close
Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
ci(workflow): 为5.0.x PR补充Redis服务
  • Loading branch information
zhou-hao committed May 31, 2026
commit 51f6b4539ba699ac854618f8556fa3534d2163f7
10 changes: 10 additions & 0 deletions .github/workflows/pull_request_5x.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,16 @@ jobs:
build:

runs-on: ubuntu-latest
services:
redis:
image: redis:7-alpine
ports:
- 6379:6379
options: >-
--health-cmd "redis-cli ping"
--health-interval 10s
--health-timeout 5s
--health-retries 5

steps:
- uses: actions/checkout@v1
Expand Down
Loading