diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 809755c..e6edf68 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -29,10 +29,9 @@ jobs: - name: Start Redis container run: | - docker run -d --name redis-test-container -p 6379:6379 redis:latest - - - name: Build Relayer Docker image - run: docker build -t relayer-test-image -f deployments/ci/Dockerfile.tests . + echo "Installing Foundry and anvil" + curl -L https://foundry.paradigm.xyz | bash + foundryup - name: Run tests inside Docker container run: | diff --git a/deployments/ci/install_foundry.sh b/deployments/ci/install_foundry.sh index ac0431c..1b6607c 100755 --- a/deployments/ci/install_foundry.sh +++ b/deployments/ci/install_foundry.sh @@ -16,7 +16,8 @@ fi # Verify installation echo "Verifying Foundry installation" -if command -v foundryup >/dev/null 2>&1; then +if command -v foundryup >/dev/n +ull 2>&1; then echo "Foundry installed successfully!" source /home/runner/.bashrc foundryup --version