From 9b8eeaf53eddb58a45cbc0f2580ad556992f71c9 Mon Sep 17 00:00:00 2001 From: user Date: Wed, 4 Jun 2025 11:03:38 -0400 Subject: [PATCH] Remove macos workflow redis dependency We should use the redis within the payjoin-test-utils and not install redis seperately. --- .github/workflows/python.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 3d2d1783a..b7d4cfe08 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -90,23 +90,6 @@ jobs: - name: Setup Docker on macOS uses: douglascamata/setup-docker-macos-action@v1.0.0 - - name: "Install Redis" - run: | - brew update - brew install redis - - - name: "Start Redis" - run: | - redis-server --daemonize yes - for i in {1..10}; do - if redis-cli ping | grep -q PONG; then - echo "Redis is ready" - break - fi - echo "Waiting for Redis..." - sleep 1 - done - - name: "Use cache" uses: Swatinem/rust-cache@v2