Update workflow to include redis
This commit is contained in:
8
.github/workflows/general.yml
vendored
8
.github/workflows/general.yml
vendored
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user