A decentralized music tracking and discovery platform built on AT Protocol 🎵

ci: add redis service

+12
+12
.github/workflows/ci.yml
··· 9 9 jobs: 10 10 tests: 11 11 runs-on: ubuntu-latest 12 + 13 + services: 14 + redis: 15 + image: redis:7-alpine 16 + ports: 17 + - 6379/tcp 18 + options: >- 19 + --health-cmd "redis-cli ping || exit 1" 20 + --health-interval 5s 21 + --health-timeout 3s 22 + --health-retries 10 23 + 12 24 steps: 13 25 - uses: actions/checkout@v2 14 26 - name: Install dependencies