We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2515e89 commit bd848d1Copy full SHA for bd848d1
1 file changed
.github/workflows/publish.yml
@@ -19,6 +19,20 @@ jobs:
19
permissions:
20
id-token: write # Required for publishing using OIDC authentication
21
contents: write
22
+
23
+ services:
24
+ redis:
25
+ image: redis
26
+ # Set health checks to wait until redis has started
27
+ options: >-
28
+ --health-cmd "redis-cli ping"
29
+ --health-interval 10s
30
+ --health-timeout 5s
31
+ --health-retries 5
32
+ ports:
33
+ # Maps port 6379 on service container to the host
34
+ - 6379:6379
35
36
steps:
37
- uses: actions/checkout@v4
38
0 commit comments