Update workflow to include redis

This commit is contained in:
Alphonse Paix
2025-09-05 19:23:11 +02:00
parent 54b0512f3f
commit 1ec51f0caf

View File

@@ -46,6 +46,10 @@ jobs:
# Opens tcp port 5432 on the host and service container # Opens tcp port 5432 on the host and service container
ports: ports:
- 5432:5432 - 5432:5432
redis:
image: redis:7
ports:
- 6379:6379
steps: steps:
# Downloads a copy of the code in your repository before running CI tests # Downloads a copy of the code in your repository before running CI tests
- name: Check out repository code - name: Check out repository code
@@ -128,6 +132,10 @@ jobs:
POSTGRES_DB: postgres POSTGRES_DB: postgres
ports: ports:
- 5432:5432 - 5432:5432
redis:
image: redis:7
ports:
- 6379:6379
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install the Rust toolchain - name: Install the Rust toolchain