tangled
alpha
login
or
join now
t1c.dev
/
rocksky
forked from
rocksky.app/rocksky
2
fork
atom
A decentralized music tracking and discovery platform built on AT Protocol 🎵
2
fork
atom
overview
issues
pulls
pipelines
ci: add redis service
tsiry-sandratraina.com
6 months ago
5c05d096
2922fb6f
+12
1 changed file
expand all
collapse all
unified
split
.github
workflows
ci.yml
+12
.github/workflows/ci.yml
···
9
9
jobs:
10
10
tests:
11
11
runs-on: ubuntu-latest
12
12
+
13
13
+
services:
14
14
+
redis:
15
15
+
image: redis:7-alpine
16
16
+
ports:
17
17
+
- 6379/tcp
18
18
+
options: >-
19
19
+
--health-cmd "redis-cli ping || exit 1"
20
20
+
--health-interval 5s
21
21
+
--health-timeout 3s
22
22
+
--health-retries 10
23
23
+
12
24
steps:
13
25
- uses: actions/checkout@v2
14
26
- name: Install dependencies