Skip to content

Commit bf2b9dd

Browse files
committed
Add Redis service container to CI workflow
The next commit will add tests that require a local Redis server on the default port (6379).
1 parent 787137c commit bf2b9dd

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ jobs:
88
runs-on: ubuntu-22.04
99
env:
1010
WEB_PROJECT_PATH: src/Buttercup.Web
11+
services:
12+
redis:
13+
image: redis
14+
ports:
15+
- 6379:6379
1116
steps:
1217
- name: Checkout
1318
uses: actions/checkout@v4

0 commit comments

Comments
 (0)