diff --git a/.github/config.workflow.toml b/.github/config.workflow.toml index 8ee4f6da..267997f6 100644 --- a/.github/config.workflow.toml +++ b/.github/config.workflow.toml @@ -10,7 +10,6 @@ host = "localhost" port = 6379 password = "" database = 0 -enabled = false [redis.cache] host = "localhost" diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index f9c98d30..8ff07472 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,6 +25,14 @@ jobs: --health-interval 10s --health-timeout 5s --health-retries 5 + redis: + image: redis:latest + ports: + - 6379:6379 + options: --health-cmd "redis-cli ping" + --health-interval 10s + --health-timeout 5s + --health-retries 5 permissions: contents: read security-events: write