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 a921355 commit 0ebf3e6Copy full SHA for 0ebf3e6
.github/workflows/publish.yml
@@ -10,6 +10,16 @@ name: PyPI Publish
10
jobs:
11
publish:
12
runs-on: ubuntu-latest
13
+ services:
14
+ redis:
15
+ image: redis
16
+ options: >-
17
+ --health-cmd "redis-cli ping"
18
+ --health-interval 10s
19
+ --health-timeout 5s
20
+ --health-retries 5
21
+ ports:
22
+ - 6379:6379
23
steps:
24
- name: Checkout code
25
uses: actions/checkout@v3
.github/workflows/release.yml
@@ -13,6 +13,16 @@ jobs:
autorelease:
name: Create Release
runs-on: "ubuntu-latest"
26
27
- uses: actions/checkout@v3
28
with:
0 commit comments