From 98919d1b792eaf7a44b5803025923d09841a1178 Mon Sep 17 00:00:00 2001 From: alex Date: Sun, 1 Oct 2023 16:00:58 +0800 Subject: [PATCH] feat: pull image before test --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 48112691d..7ba109e07 100644 --- a/Makefile +++ b/Makefile @@ -17,7 +17,9 @@ lint: && golangci-lint run test: - go test ./... -coverprofile=coverage.out -covermode=atomic -timeout=300s + docker pull ghcr.io/foundry-rs/foundry:latest \ + && docker pull gcr.io/evmchain/taiko-geth:taiko \ + && go test ./... -coverprofile=coverage.out -covermode=atomic -timeout=300s dev_net: @TAIKO_MONO_DIR=${TAIKO_MONO_DIR} \