From 5695d847ca74949fcc640edce3790ba22cb364b0 Mon Sep 17 00:00:00 2001 From: Jeremie Fraeys Date: Thu, 12 Feb 2026 14:09:57 -0500 Subject: [PATCH] ci: add Redis service to ci-native.yml for test isolation --- .forgejo/workflows/ci-native.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.forgejo/workflows/ci-native.yml b/.forgejo/workflows/ci-native.yml index 4a0e06c..b9d6411 100644 --- a/.forgejo/workflows/ci-native.yml +++ b/.forgejo/workflows/ci-native.yml @@ -98,6 +98,17 @@ jobs: runs-on: self-hosted needs: check-environment timeout-minutes: 30 + + services: + redis: + image: redis:7-alpine + ports: + - 6379:6379 + options: >- + --health-cmd "redis-cli ping" + --health-interval 5s + --health-timeout 3s + --health-retries 3 steps: - uses: actions/checkout@v4