From d96b5fe936e1bea8ecb7d6d050457ec3340b12d3 Mon Sep 17 00:00:00 2001 From: katsumata <12413150+winor30@users.noreply.github.com> Date: Sat, 16 Dec 2023 19:53:06 +0900 Subject: [PATCH] Improve project setup and testing guidance - Update README.md to guide users through dependency initialization using `forge install`. - Add test execution instructions post-dependency installation in README. --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 0ffa980..1e324d7 100644 --- a/README.md +++ b/README.md @@ -38,10 +38,20 @@ workflows. Forge is using submodules to manage dependencies. Initialize the dependencies: +If you are in the root directory of the project, run: + +```bash +forge install --root ./contracts +``` + +If you are in in `contracts/`: + ```bash forge install ``` +Then, run the tests: + If you are in the root directory of the project, run: ```bash